2024-06-17 15:54:21 +07:00
|
|
|
import { StatusBar } from "expo-status-bar";
|
|
|
|
import { StyleSheet, Text, View } from "react-native";
|
2024-06-13 16:38:10 +07:00
|
|
|
|
|
|
|
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,
|
2024-06-17 15:54:21 +07:00
|
|
|
backgroundColor: "#fff",
|
|
|
|
alignItems: "center",
|
|
|
|
justifyContent: "top",
|
2024-06-13 16:38:10 +07:00
|
|
|
},
|
|
|
|
});
|