forked from JesperLekland/react-native-svg-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
44 lines (40 loc) · 1.15 KB
/
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
/* eslint-disable no-unused-vars */
import React from 'react'
import { AppRegistry, Text, View } from 'react-native'
const App = () => {
return (
<View
style={{
flex: 1,
justifyContent: 'center',
}}
>
<Text
style={{
fontSize: 22,
textAlign: 'center',
}}
>
{
'Welcome to "react-native-svg-charts". \n' +
'To see showcases of all our charts\n'
}
</Text>
<Text
style={{
fontSize: 14,
alignSelf: 'center',
}}
>
{
'• Stop your packager \n' +
'• run "yarn storybook" \n' +
'• Go to "localhost:7008" in your browser\n' +
'• reload your device \n' +
'• browse our charts'
}
</Text>
</View>
)
}
AppRegistry.registerComponent('react-native-svg-charts', () => App)