import React from 'react' import { View, Text } from 'react-native' import { TabBar as TVTabBar} from 'react-native-tab-view' import Elements from '../../components/elements.js'; import Theme from '../../components/theme.style'; interface Props { /** * The properties from the individual tab bar in tabs. */ item: Object } const TabBar = (props: Props) => { const { item } = props; const RenderLabel = ({route, focused}) => { return ( {route.title} ) } return ( RenderLabel(labelProps)} /> ) } export default TabBar