blob: 5154bfa7b301d8b5ecb94255a230a1ac78ee0b07 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// index.web.js
import {AppRegistry} from 'react-native'
import App from './src/App'
import {name as appName} from './src/app.json'
// register the app
AppRegistry.registerComponent(appName, () => App)
AppRegistry.runApplication(appName, {
initialProps: {},
rootTag: document.getElementById('app-root'),
})
|