forked from JesperLekland/react-native-svg-charts-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
44 lines (41 loc) · 978 Bytes
/
index.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
import React from 'react'
import { AppRegistry, Text, View } from 'react-native'
class App extends React.PureComponent {
render() {
return (
<View
style={{
flex: 1,
justifyContent: 'center',
paddingHorizontal: 16,
}}
>
<Text
style={{
fontSize: 22,
textAlign: 'center',
}}
>
{
'Welcome to \n"react-native-svg-charts".\n\n' +
'To see showcases of all our charts\n'
}
</Text>
<Text
style={{
fontSize: 14,
}}
>
{
'• Stop your packager \n' +
'• run "yarn storybook" \n' +
'• Go to "localhost:7007" in your browser\n' +
'• reload your device \n' +
'• browse our charts'
}
</Text>
</View>
)
}
}
AppRegistry.registerComponent('examples', () => App)