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