index.js 368 Bytes
Newer Older
1 2 3 4
/**
 * @format
 */

leiyongsheng committed
5 6
import { AppRegistry } from 'react-native';
import App from './src/App';
leiyongsheng committed
7
import NavigateEntryTest from './src/test/NavigateEntryTest.js'
leiyongsheng committed
8
import { name as appName } from './app.json';
9

leiyongsheng committed
10 11
AppRegistry.registerComponent(appName, (props) => {
    console.log('AppRegistry.registerComponent:' + props);
leiyongsheng committed
12 13
    // return App;
    return NavigateEntryTest;
leiyongsheng committed
14
});