feat: proyecto Expo inicializado

This commit is contained in:
2026-05-22 15:06:00 -06:00
parent 1977ab55a6
commit d1a3a107c4
13 changed files with 8935 additions and 0 deletions

20
frontend/App.js Normal file
View File

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