blob: 51701e6df1388394e21b5184013a210f2fe4bc66 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import React from 'react';
import { NavigationContainer } from '@react-navigation/native';
import AppNavigator from './src/navigation/AppNavigator.js';
import { CartProvider } from './src/context/CartContext.js';
const App = () => {
return (
<CartProvider>
<NavigationContainer>
<AppNavigator />
</NavigationContainer>
</CartProvider>
);
};
export default App;
|