import React from "react"; import { View, ViewStyle } from "react-native"; import { River } from "@applicaster/zapp-react-native-ui-components/Components"; import { withNestedNavigationContextProvider } from "@applicaster/zapp-react-native-ui-components/Contexts/NestedNavigationContext"; type Props = { styles: Record; minHeight: number; changingTab: boolean; feedUrl: string; screenId: string; hasUIComponents: boolean; backgroundColor: string; }; function TabContentComponent(props: Props) { const { styles, minHeight, backgroundColor, changingTab, feedUrl, screenId, hasUIComponents, } = props; return ( {changingTab ? null : ( )} ); } export const TabContent = withNestedNavigationContextProvider(TabContentComponent);