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.

20 lines
455 B

  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.tsx 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. });