mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-02-12 22:30:36 +08:00
8 lines
187 B
JavaScript
8 lines
187 B
JavaScript
/** @format */
|
|
|
|
import { AppRegistry } from 'react-native';
|
|
import App from './app/App';
|
|
import { name as appName } from './app.json';
|
|
|
|
AppRegistry.registerComponent(appName, () => App);
|