-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
27 lines (25 loc) · 909 Bytes
/
Copy pathApp.js
File metadata and controls
27 lines (25 loc) · 909 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
26
27
import React from 'react';
import {StackNavigator} from 'react-navigation';
import GameSessionDetailScreen from "./GameSessionDetail/GameSessionDetailScreen";
import GameSessionJoinScreen from "./GameSessionJoin/GameSessionJoinScreen";
import MapScreen from "./Map/MapScreen";
import GameSessionOverviewListScreen from "./GameSessionOverviewList/GameSessionOverviewListScreen";
import GameSessionCreateScreen from "./GameSessionCreate/GameSessionCreateScreen";
const RootNavigator = StackNavigator({
GameSessionOverviewListScreen: {
screen: GameSessionOverviewListScreen,
},
GameSessionDetailScreen: {
screen: GameSessionDetailScreen,
},
GameSessionCreateScreen: {
screen: GameSessionCreateScreen,
},
GameSessionJoinPage: {
screen: GameSessionJoinScreen,
},
MapScreen: {
screen: MapScreen,
},
});
export default RootNavigator;