-
Notifications
You must be signed in to change notification settings - Fork 413
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove old index files. Use different start screen
- Loading branch information
1 parent
43d0ac6
commit a845c46
Showing
4 changed files
with
39 additions
and
478 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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) |
Oops, something went wrong.