React native app

This commit is contained in:
nicco
2018-08-23 14:42:28 +02:00
parent 48ecc86a31
commit 59fd301a86
66 changed files with 10610 additions and 0 deletions

9
src/rn/index.js Normal file
View File

@@ -0,0 +1,9 @@
import {
AppRegistry
} from 'react-native'
import App from './src/App'
import {
name as appName
} from './app.json'
AppRegistry.registerComponent(appName, () => App);