-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ios.js
More file actions
33 lines (30 loc) · 781 Bytes
/
index.ios.js
File metadata and controls
33 lines (30 loc) · 781 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
31
32
33
import React, { Component } from 'react';
import {AppRegistry, Text} from 'react-native';
import {
Container, Header, Footer, Content, Title
//Button, Icon, Spinner,
} from 'native-base';
class NextTrainCT extends Component {
render() {
return (
<Container>
<Header backgroundColor="#039BE5">
<Title>NextTrain CT</Title>
</Header>
<Content>
<Text>
Welcome to React Native!
</Text>
<Text>
To get started, edit index.ios.js
</Text>
<Text>
Press Cmd+R to reload,{'\n'}
Cmd+D or shake for dev menu
</Text>
</Content>
</Container>
);
}
}
AppRegistry.registerComponent('NextTrainCT', () => NextTrainCT);