-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApp.js
45 lines (42 loc) · 1.25 KB
/
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
36
37
38
39
40
41
42
43
44
45
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow strict-local
*/
import 'react-native-gesture-handler';
import React from 'react';
import {StatusBar, StyleSheet, View} from 'react-native';
import ProductContextProvider from './Store/ProductContextProvider';
import FavoriteContextProvider from './Store/FavoriteContextProvider';
import CartContextProvider from './Store/CartContextProvider';
import AuthContextProvider from './Store/AuthContextProvider';
import ThemeContextProvider from './Store/ThemeContextProvider';
import MainNavigation from './Navigation/MainNavigation';
const App = () => {
return (
<>
<StatusBar backgroundColor="#F4F6F6" />
<ThemeContextProvider>
<AuthContextProvider>
<ProductContextProvider>
<FavoriteContextProvider>
<CartContextProvider>
<View style={styles.outerContainer}>
<MainNavigation />
</View>
</CartContextProvider>
</FavoriteContextProvider>
</ProductContextProvider>
</AuthContextProvider>
</ThemeContextProvider>
</>
);
};
const styles = StyleSheet.create({
outerContainer: {
flex: 1,
},
});
export default App;