-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
30 lines (26 loc) · 910 Bytes
/
App.js
File metadata and controls
30 lines (26 loc) · 910 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
28
29
30
import React, { Component } from 'react';
import { createAppContainer } from 'react-navigation';
import { createStackNavigator} from 'react-navigation-stack';
import FirstPage from './FirstPage';
import SecondPage from './SecondPage';
import ThirdPage from './ThirdPage';
import FourthPage from './FourthPage';
import FifthPage from './FifthPage';
import SixthPage from './SixthPage';
import SeventhPage from './SeventhPage';
import EighthPage from './EighthPage';
const App = createStackNavigator({
FirstPage: { screen: FirstPage },
SecondPage: { screen: SecondPage },
ThirdPage: { screen: ThirdPage },
FourthPage: { screen: FourthPage },
FifthPage: { screen: FifthPage },
SixthPage: { screen: SixthPage },
SeventhPage: { screen: SeventhPage },
EighthPage: { screen: EighthPage },
},
{
initialRouteName: 'FirstPage',
}
);
export default createAppContainer(App);