import { ReactElement } from 'react' import { StyleSheet, Text } from 'react-native' import { SafeAreaProvider, SafeAreaView } from 'react-native-safe-area-context' export const App = (): ReactElement => { return ( 😻 Open src/App.tsx to start working on your app! Happy hacking! 🙌🏻 ) } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#fff', alignItems: 'center', justifyContent: 'center' }, text: { marginBottom: 8 }, emoji: { fontSize: 82, marginBottom: 24 } })