-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
43 lines (40 loc) · 969 Bytes
/
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
import { TabNavigator } from 'react-navigation';
import Home from './src/components/home/home';
import Info from './src/components/info/info';
import LotsOfGreetings from './src/components/greetings/greetings';
import BlinkApp from './src/components/blink/blink';
import Flex from './src/components/flex/flex';
import Pizza from './src/components/pizza/pizzaTranslator';
import Touchables from './src/components/touchables/touchables';
import IScrolledDownAndWhatHappenedNextShockedMe from './src/components/scroll/scroll';
import FlatListBasics from './src/components/lists/lists';
const App = TabNavigator({
H: {
screen: Home,
},
I: {
screen: Info
},
G: {
screen: LotsOfGreetings
},
B: {
screen: BlinkApp
},
F: {
screen: Flex
},
L: {
screen: FlatListBasics
},
P: {
screen: Pizza
},
S: {
screen: IScrolledDownAndWhatHappenedNextShockedMe
},
T: {
screen: Touchables
}
});
module.exports = App;