-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
25 lines (21 loc) · 732 Bytes
/
Copy pathApp.js
File metadata and controls
25 lines (21 loc) · 732 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 { StatusBar } from 'expo-status-bar';
import { StyleSheet, Text, View } from 'react-native';
import * as React from "react";
import Home from './screens/Home';
import RootNavigation from './navigation';
import Signup from './screens/Signup';
import Login from './screens/Login';
import SubCafes, { allSubCafes } from './components/Locations/SubCafes';
import Unfinished from './screens/Unfinished';
import StartingScreen from './screens/StartingScreen';
import Today from './screens/Today';
import VENUE from './screens/FOODS';
// If you want to see each screen individually change the tag below to one the thingies on top
export default function App() {
return (
<>
<RootNavigation/>
{/* <VENUE/> */}
</>
);
}