1 |
b7014ba2
|
Schwobik
|
import 'react-native-gesture-handler'
|
2 |
cea63222
|
Schwobik
|
import { NativeBaseProvider } from "native-base"
|
3 |
5ed9692c
|
Schwobik
|
import { Provider } from "react-redux"
|
4 |
|
|
import store from "./src/stores/store"
|
5 |
cea63222
|
Schwobik
|
import Navigation from "./src/pages/Navigation"
|
6 |
ddc84a2f
|
Schwobik
|
import { nativeBaseTheme } from "./src/theme/nativeBaseTheme"
|
7 |
f2feda74
|
Schwobik
|
|
8 |
|
|
export default function App() {
|
9 |
cea63222
|
Schwobik
|
return (
|
10 |
|
|
<Provider store={ store }>
|
11 |
|
|
<NativeBaseProvider theme={ nativeBaseTheme }>
|
12 |
|
|
<Navigation/>
|
13 |
|
|
</NativeBaseProvider>
|
14 |
|
|
</Provider>
|
15 |
|
|
)
|
16 |
f2feda74
|
Schwobik
|
}
|