1 |
b7014ba2
|
Schwobik
|
import 'react-native-gesture-handler'
|
2 |
|
|
import { StyleSheet} from 'react-native'
|
3 |
5c86e446
|
mschwob
|
import { NativeBaseProvider, Box } from "native-base"
|
4 |
5ed9692c
|
Schwobik
|
import { Provider } from "react-redux"
|
5 |
|
|
import store from "./src/stores/store"
|
6 |
b7014ba2
|
Schwobik
|
import Navigation from "./src/components/Navigation"
|
7 |
ddc84a2f
|
Schwobik
|
import { nativeBaseTheme } from "./src/theme/nativeBaseTheme"
|
8 |
f2feda74
|
Schwobik
|
|
9 |
|
|
export default function App() {
|
10 |
|
|
return (
|
11 |
5ed9692c
|
Schwobik
|
<Provider store={store}>
|
12 |
ddc84a2f
|
Schwobik
|
<NativeBaseProvider theme={nativeBaseTheme}>
|
13 |
b7014ba2
|
Schwobik
|
<Navigation/>
|
14 |
5ed9692c
|
Schwobik
|
</NativeBaseProvider>
|
15 |
|
|
</Provider>
|
16 |
dfda8907
|
Schwobik
|
)
|
17 |
f2feda74
|
Schwobik
|
}
|
18 |
|
|
|
19 |
|
|
const styles = StyleSheet.create({
|
20 |
|
|
container: {
|
21 |
|
|
flex: 1,
|
22 |
|
|
backgroundColor: '#fff',
|
23 |
|
|
alignItems: 'center',
|
24 |
|
|
justifyContent: 'center',
|
25 |
|
|
},
|
26 |
|
|
});
|