1
|
import { StatusBar } from 'expo-status-bar'
|
2
|
import { StyleSheet, Text, View } from 'react-native'
|
3
|
import LoginPage from './src/pages/LoginPage'
|
4
|
|
5
|
export default function App() {
|
6
|
return (
|
7
|
<View style={styles.container}>
|
8
|
<Text>Open up App.js to start working on your app!</Text>
|
9
|
<StatusBar style="auto" />
|
10
|
<LoginPage />
|
11
|
</View>
|
12
|
);
|
13
|
}
|
14
|
|
15
|
const styles = StyleSheet.create({
|
16
|
container: {
|
17
|
flex: 1,
|
18
|
backgroundColor: '#fff',
|
19
|
alignItems: 'center',
|
20
|
justifyContent: 'center',
|
21
|
},
|
22
|
});
|