-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
70 lines (69 loc) · 1.54 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import React, { Component } from 'react';
import { Text, View } from 'react-native';
import { StackNavigator } from 'react-navigation';
import DayMainPage from './src/pages/containers/DayMain';
import Day1Page from './src/pages/containers/Day1';
import Day2Page from './src/pages/containers/Day2';
import Day3Page from './src/pages/containers/Day3';
import Day5Page from './src/pages/containers/Day5';
import Day6Page from './src/pages/containers/Day6';
import Day7Page from './src/pages/containers/Day7';
import Day8Page from './src/pages/containers/Day8';
import Day9Page from './src/pages/containers/Day9';
import Day10Page from './src/pages/containers/Day10';
// import Day11Page from './src/pages/containers/Day11';
import Day13Page from './src/pages/containers/Day13';
import Day14Page from './src/pages/containers/Day14';
import Day15Page from './src/pages/containers/Day15';
import Day16Page from './src/pages/containers/Day16';
import Day17Page from './src/pages/containers/Day17';
export default StackNavigator({
DayMain: {
screen: DayMainPage,
},
Day1: {
screen: Day1Page,
},
Day2: {
screen: Day2Page,
},
Day3: {
screen: Day3Page,
},
Day5: {
screen: Day5Page,
},
Day6: {
screen: Day6Page,
},
Day7: {
screen: Day7Page,
},
Day8: {
screen: Day8Page,
},
Day9: {
screen: Day9Page,
},
Day10: {
screen: Day10Page,
},
// Day11: {
// screen: Day11Page,
// }
Day13: {
screen: Day13Page,
},
Day14: {
screen: Day14Page,
},
Day15: {
screen: Day15Page,
},
Day16: {
screen: Day16Page,
},
Day17: {
screen: Day17Page,
}
})