You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

App.js 481B

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