-
Notifications
You must be signed in to change notification settings - Fork 6
/
App.js
35 lines (30 loc) · 921 Bytes
/
App.js
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
33
34
35
/**
* @format
* @flow strict-local
*/
/**
* Create By @name Sukumar_Abhijeet
*/
import React from 'react';
import { SafeAreaProvider } from 'react-native-safe-area-context';
import Colors from './src/@Constants/Colors';
import StatusBarColor from './src/@Components/status-bar-color';
import AppRouter from './src/@Routing';
import { NavigationContainer } from '@react-navigation/native';
import { Provider } from 'react-redux';
import reduxStore from './src/@Redux/store';
export default function App() {
return (
<Provider store={reduxStore}>
<SafeAreaProvider>
<StatusBarColor
backgroundColor={Colors.primaryBg}
barStyle="light-content"
/>
<NavigationContainer>
<AppRouter />
</NavigationContainer>
</SafeAreaProvider>
</Provider>
);
}