Files
devhub/index.web.js
Bruno Lemos 22b503157a Upgrade dependencies
Enable react-native-screens

Fix URL on mobile
2018-10-01 23:12:43 -03:00

17 lines
454 B
JavaScript

import { AppRegistry } from 'react-native'
import { URL, URLSearchParams } from 'whatwg-url'
import './web/src/index.css'
import './web/src/reset.css'
import App from './src/components/App.tsx'
// see https://github.com/facebook/react-native/issues/16434
global.URL = URL
global.URLSearchParams = URLSearchParams
AppRegistry.registerComponent('devhub', () => App)
AppRegistry.runApplication('devhub', {
rootTag: document.getElementById('root'),
})