Geen omschrijving

App.js 454B

1234567891011121314151617181920
  1. import { StatusBar } from 'expo-status-bar';
  2. import { StyleSheet, Text, View } from 'react-native';
  3. export default function App() {
  4. return (
  5. <View style={styles.container}>
  6. <Text>Open up App.js to start working on your app!</Text>
  7. <StatusBar style="auto" />
  8. </View>
  9. );
  10. }
  11. const styles = StyleSheet.create({
  12. container: {
  13. flex: 1,
  14. backgroundColor: '#fff',
  15. alignItems: 'center',
  16. justifyContent: 'center',
  17. },
  18. });