You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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);