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