10 lines
272 B
JavaScript
10 lines
272 B
JavaScript
|
|
import { AppRegistry } from "react-native";
|
||
|
|
import codePush from "react-native-code-push";
|
||
|
|
import App from "./App";
|
||
|
|
|
||
|
|
let codePushOptions = {
|
||
|
|
installMode: codePush.InstallMode.IMMEDIATE,
|
||
|
|
};
|
||
|
|
|
||
|
|
AppRegistry.registerComponent("NaviApp", () => codePush(codePushOptions)(App));
|