2023-01-26 19:12:27 +01:00
|
|
|
// index.web.js
|
|
|
|
|
2023-02-23 23:42:52 +01:00
|
|
|
import 'platform/polyfills'
|
2023-01-26 19:12:27 +01:00
|
|
|
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'),
|
|
|
|
})
|