-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
68 lines (57 loc) · 1.66 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
import React, {Component} from 'react';
import { StackNavigator } from 'react-navigation';
import Welcome from "./screens/Welcome";
import Origin from "./screens/Origin";
import Destination from "./screens/Destination";
import FileUp from "./screens/FileUp";
import Confirm from "./screens/Confirm";
import ThankYou from "./screens/ThankYou";
import Legend from "./screens/Legend";
import MenuOptions from './screens/MenuOptions';
import Tee from './screens/Tee';
import Digi from './screens/DigiViewer';
import Anthem from './screens/Anthem';
import Hipr from './screens/Hipr';
import Splash from './screens/SplashPanel';
import BlockScan from './screens/BlockScan';
import Tconf from './screens/Tconf';
import FileThanks from './screens/FileThanks';
const HercDemo = StackNavigator({
Welcome: { screen: Welcome },
MenuOptions: {screen: MenuOptions},
Legend: {screen: Legend},
Tee: {screen: Tee},
Tconf : {screen: Tconf},
Digi: {screen: Digi},
Anthem: {screen: Anthem},
Hipr: {screen: Hipr},
BlockScan: {screen: BlockScan},
Splash: {screen: Splash},
Origin: { screen: Origin},
Destination: { screen: Destination },
FileUp: { screen: FileUp },
Confirm: { screen: Confirm },
ThankYou: { screen: ThankYou},
FileThanks: { screen: FileThanks}
}
)
export default class App extends Component {
static navigationOptions = { header: null }
constructor(props) {
super(props);
this.state = {
Bar_Id: "",
Bar_Serial: "",
Vault_Location: "",
Weight: "",
Purity: "",
Date_Received: "",
Date_Processed: "",
Mint: "",
Supplier: ""
}
}
render() {
return <HercDemo />
}
}