mirror of
https://github.com/lemeow125/StudE-Frontend.git
synced 2024-11-17 06:19:25 +08:00
21 lines
455 B
TypeScript
21 lines
455 B
TypeScript
|
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.tsx to start working on your app!</Text>
|
||
|
<StatusBar style="auto" />
|
||
|
</View>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
const styles = StyleSheet.create({
|
||
|
container: {
|
||
|
flex: 1,
|
||
|
backgroundColor: "#fff",
|
||
|
alignItems: "center",
|
||
|
justifyContent: "center",
|
||
|
},
|
||
|
});
|