-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApp.js
36 lines (32 loc) · 964 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
import { createAppContainer } from 'react-navigation';
import { createStackNavigator } from 'react-navigation-stack';
import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
import sTransport from './components/sTransport.js';
import sTransportAdd from './components/sTransportAdd.js';
import sLogin from './components/sLogin.js';
import sMain from './components/sMain.js';
import sFood from './components/sFood.js';
import sFoodAdd from './components/sFoodAdd.js';
import Chat from './components/Chat.js';
global.netid = 'abc123';
const RootStack = createStackNavigator(
{
sTransport: sTransport,
sTransportAdd: sTransportAdd,
sLogin: sLogin,
sMain: sMain,
sFood: sFood,
sFoodAdd: sFoodAdd,
Chat: Chat,
},
{
initialRouteName: 'sLogin'
}
);
const RootContainer = createAppContainer(RootStack);
export default class App extends React.Component {
render() {
return <RootContainer />;
}
}