-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
26 lines (24 loc) · 855 Bytes
/
Copy pathApp.js
File metadata and controls
26 lines (24 loc) · 855 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
import * as React from 'react';
import MainTabNavigator from './navigation/bottomTab.buyer';
import LogoutStackNav from './navigation/logoutNav';
import BuyerNavigator from './navigation/screenNav.buyer';
import RegisterSeller from './screens/Admin/AddSeller';
import HomeScreen from './screens/Admin/homeScreen';
import OccupiedScreen from './screens/Admin/occupiedScreen';
import Cart from './screens/Buyer/cartScreen';
import MenuScreenAdd from './screens/Seller/menuScreen.add';
import MenuScreenEdit from './screens/Seller/menuScreen.edit';
import InsertOrder from './test';
import TestMenuScreen from './test';
import Chart from './test2';
import CartItemTest from './test2';
export default function App() {
return (
// <LogoutStackNav/>
//<TestMenuScreen/>
// <CartItemTest/>
// <Cart/>
//<InsertOrder/>
<Chart/>
);
}