soya/index.js

11 lines
247 B
JavaScript
Raw Permalink Normal View History

2024-02-28 14:29:55 +08:00
/**
* @format
*/
import {AppRegistry} from 'react-native';
import App from './App';
import codePush from "react-native-code-push";
import {name as appName} from './app.json';
AppRegistry.registerComponent(appName, () => codePush(App));