選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

index.js 346B

123456789
  1. import 'react-native-gesture-handler';
  2. import { registerRootComponent } from 'expo';
  3. import App from './App';
  4. // registerRootComponent calls AppRegistry.registerComponent('main', () => App);
  5. // It also ensures that whether you load the app in Expo Go or in a native build,
  6. // the environment is set up appropriately
  7. registerRootComponent(App);