我的index.js文件注册了多个根组件,如下面的
import RNUserInfo from 'custom_auth/react/user/user-info/components/entry/user-info'
AppRegistry.registerComponent('RNUserInfo', () => RNUserInfo);
import RNProduct from 'product/react/components/entry/product-entry'
AppRegistry.registerComponent('RNProduct', () => RNProduct);
是否可以在上述设置中使用codepush?
我只能找到具有单根组件的示例