App.js 580 B

123456789101112131415161718192021222324
  1. import React from 'react';
  2. import { StyleSheet, Text, View } from 'react-native';
  3. export default class App extends React.Component {
  4. render() {
  5. return (
  6. <View style={styles.container}>
  7. <Text>Open up App.js to start working on your app!</Text>
  8. <Text>Changes you make will automatically reload.</Text>
  9. <Text>Shake your phone to open the developer menu.</Text>
  10. </View>
  11. );
  12. }
  13. }
  14. const styles = StyleSheet.create({
  15. container: {
  16. flex: 1,
  17. backgroundColor: '#fff',
  18. alignItems: 'center',
  19. justifyContent: 'center',
  20. },
  21. });