Initial commit

Generated by create-expo-app 1.3.2.
This commit is contained in:
2023-03-07 15:20:45 +01:00
commit 25d5321778
8 changed files with 7031 additions and 0 deletions

18
App.tsx Normal file
View File

@@ -0,0 +1,18 @@
import { StyleSheet, Text, View } from 'react-native';
export default function App() {
return (
<View style={styles.container}>
<Text>Open up App.tsx to start working on your app!</Text>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});