mirror of
https://github.com/zhigang1992/devhub.git
synced 2026-06-19 06:36:48 +08:00
10 lines
184 B
JavaScript
10 lines
184 B
JavaScript
// @flow
|
|
|
|
import { AppRegistry } from 'react-native';
|
|
|
|
import { name as appName } from './package.json';
|
|
|
|
import App from './src/';
|
|
|
|
AppRegistry.registerComponent(appName, () => App);
|