-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.jsx
More file actions
32 lines (29 loc) · 1019 Bytes
/
App.jsx
File metadata and controls
32 lines (29 loc) · 1019 Bytes
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 { View, Text } from 'react-native'
import React from 'react'
import { NavigationContainer } from '@react-navigation/native'
import Main from './src/screens/stacks/Main'
import ScreenContextProvider from './src/context/ScreenContextProvider'
import DeleteProductContext from './src/context/DeleteProductContext'
import PopupContext from './src/context/PopupContext'
import LoginContext from './src/context/LoginContext'
import CountryDataContext from './src/context/CountryDataContext'
import UserContext from './src/context/userContext'
export default function App() {
return (
<ScreenContextProvider>
<LoginContext>
<UserContext>
<CountryDataContext>
<PopupContext>
<DeleteProductContext>
<NavigationContainer>
<Main />
</NavigationContainer>
</DeleteProductContext>
</PopupContext>
</CountryDataContext>
</UserContext>
</LoginContext>
</ScreenContextProvider>
)
}