import { StyleSheet, Text, View } from 'react-native'; export default function Home({theme}:any){ const st = style(theme); return ( NEWS FEED COMING SOON! ) } const style = (theme:any) => { return StyleSheet.create({ container: { flex: 1, justifyContent: 'center', marginBottom: 180, width: '100%', }, text: { color: theme.text, opacity: 0.5, }, row: { flexDirection: 'row', }, }); }