Skip to content

Commit

Permalink
remove old index files. Use different start screen
Browse files Browse the repository at this point in the history
  • Loading branch information
JesperLekland committed Feb 18, 2018
1 parent 43d0ac6 commit a845c46
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 478 deletions.
41 changes: 39 additions & 2 deletions index.js
@@ -1,7 +1,44 @@
/* eslint-disable no-unused-vars */

import React from 'react'
import { AppRegistry } from 'react-native'
import App from './src/app'
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)

0 comments on commit a845c46

Please sign in to comment.