11 lines
309 B
JavaScript
11 lines
309 B
JavaScript
|
/**
|
||
|
* @format
|
||
|
*/
|
||
|
|
||
|
import {AppRegistry, Platform} from 'react-native';
|
||
|
import App from './App';
|
||
|
import {name as appName} from './app.json';
|
||
|
import codePush from 'react-native-code-push';
|
||
|
//AppRegistry.registerComponent(appName, () => App);
|
||
|
AppRegistry.registerComponent(appName, () => codePush(App));
|
||
|
|