index.js 376 B

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