-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
32 lines (30 loc) · 836 Bytes
/
App.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import { Provider } from 'react-redux';
import { NativeBaseProvider, Box, StatusBar, extendTheme } from 'native-base';
import { Navigation } from './src/navigation';
import { store } from './src/store/store';
const colorScheme = 'primary';
const theme = extendTheme({
components: {
Button: {
defaultProps: { colorScheme },
},
Input: {
defaultProps: { colorScheme },
},
Switch: {
defaultProps: { colorScheme },
},
},
});
export default function App() {
return (
<Provider store={store}>
<NativeBaseProvider theme={theme}>
<Box h='100%' bg='white'>
<StatusBar />
<Navigation />
</Box>
</NativeBaseProvider>
</Provider>
);
}