import { StyleSheet, Text, View} from 'react-native'; export default function Shows({theme}:any){ return ( This is shows ) } const style = (theme:any) => { return StyleSheet.create({ container: { }, text: { color: theme.text, } }); }