1 |
7e4b4e6a
|
mschwob
|
import { StatusBar } from 'expo-status-bar'
|
2 |
|
|
import { StyleSheet, Text, View } from 'react-native'
|
3 |
5c86e446
|
mschwob
|
import { NativeBaseProvider, Box } from "native-base"
|
4 |
7e4b4e6a
|
mschwob
|
import LoginPage from './src/pages/LoginPage'
|
5 |
f2feda74
|
Schwobik
|
|
6 |
|
|
export default function App() {
|
7 |
|
|
return (
|
8 |
5c86e446
|
mschwob
|
<NativeBaseProvider>
|
9 |
|
|
<LoginPage />
|
10 |
|
|
</NativeBaseProvider>
|
11 |
f2feda74
|
Schwobik
|
);
|
12 |
|
|
}
|
13 |
|
|
|
14 |
|
|
const styles = StyleSheet.create({
|
15 |
|
|
container: {
|
16 |
|
|
flex: 1,
|
17 |
|
|
backgroundColor: '#fff',
|
18 |
|
|
alignItems: 'center',
|
19 |
|
|
justifyContent: 'center',
|
20 |
|
|
},
|
21 |
|
|
});
|