mirror of
https://github.com/zhigang1992/devhub.git
synced 2026-06-18 03:58:44 +08:00
12 lines
284 B
JavaScript
12 lines
284 B
JavaScript
import { AppRegistry } from 'react-native'
|
|
|
|
import './web/src/index.css'
|
|
import './web/src/reset.css'
|
|
|
|
import App from './src/components/App.tsx'
|
|
|
|
AppRegistry.registerComponent('devhub', () => App)
|
|
AppRegistry.runApplication('devhub', {
|
|
rootTag: document.getElementById('root'),
|
|
})
|