-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathApp.js
56 lines (54 loc) · 1.34 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
import {createStackNavigator} from 'react-navigation-stack';
import {createAppContainer, StackAction} from 'react-navigation';
import React from 'react';
import {Stylesheet, Text, View, Button} from 'react-native';
import Screen from "./AppComponents/Screen";
import Navbar from "./AppComponents/Navbar";
import ExpenditureList from "./AppComponents/ExpenditureList";
import AddButton from "./AppComponents/AddButton";
import About from "./AppComponents/About";
import Record from "./AppComponents/Record";
import Add from "./AppComponents/Add";
import Monday from "./AppComponents/Monday";
import Tuesday from "./AppComponents/Tuesday";
import Wednesday from "./AppComponents/Wednesday";
import Thursday from "./AppComponents/Thursday";
import Friday from "./AppComponents/Friday";
import Saturday from "./AppComponents/Saturday";
import Sunday from "./AppComponents/Sunday";
const AboutStack = createStackNavigator({
About: {
screen: About,
},
Home: {
screen: Screen,
},
Record: {
screen: Record,
},
Add: {
screen: Add,
},
Monday: {
screen: Monday,
},
Tuesday: {
screen: Tuesday,
},
Wednesday: {
screen: Wednesday,
},
Thursday: {
screen: Thursday,
},
Friday: {
screen: Friday,
},
Sunday: {
screen: Sunday,
},
Saturday: {
screen: Saturday,
}
});
export default createAppContainer(AboutStack);