Files
JubaBox/App.js
T
DESKTOP-CIKBOTF\ChiefSoft d689640f98 Initial commit
Generated by create-expo-app 2.3.5.
2024-05-18 15:24:12 -04:00

21 lines
454 B
JavaScript

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',
},
});