Application Android et IOS pour l'amicale des élèves
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 403B

12345678910111213141516171819
  1. import React from 'react';
  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. </View>
  8. );
  9. }
  10. const styles = StyleSheet.create({
  11. container: {
  12. flex: 1,
  13. backgroundColor: '#fff',
  14. alignItems: 'center',
  15. justifyContent: 'center',
  16. },
  17. });