mirror of
https://github.com/zhigang1992/devhub.git
synced 2026-06-18 03:58:44 +08:00
13 lines
292 B
JavaScript
13 lines
292 B
JavaScript
/* eslint-env browser */
|
|
|
|
import 'babel-polyfill';
|
|
import { AppRegistry } from 'react-native';
|
|
|
|
import './web/src/index.css';
|
|
import App from './src/';
|
|
|
|
AppRegistry.registerComponent('devhub', () => App);
|
|
AppRegistry.runApplication('devhub', {
|
|
rootTag: document.getElementById('root'),
|
|
});
|