-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
40 lines (32 loc) · 759 Bytes
/
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
import { NavigationContainer } from '@react-navigation/native';
import React from 'react';
import {
SafeAreaView,
ScrollView,
StatusBar,
StyleSheet,
Text,
useColorScheme,
View,
} from 'react-native';
import {
Colors,
DebugInstructions,
Header,
LearnMoreLinks,
ReloadInstructions,
} from 'react-native/Libraries/NewAppScreen';
import Routes from './src/Routes';
import { TravelCity } from './src/Screen';
// import { TravelCity } from './src/Screen';
/* $FlowFixMe[missing-local-annot] The type annotation(s) required by Flow's
* LTI update could not be added via codemod */
const App = () => {
return (
<NavigationContainer>
<TravelCity/>
{/* <Routes/> */}
</NavigationContainer>
);
};
export default App;