私の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 は使えますか?
単一のルートコンポーネントを持つ例しか見つかりません