Files
native-app/apps/mobile/index.js
2024-01-14 21:24:49 +01:00

9 lines
315 B
JavaScript

import { registerRootComponent } from 'expo';
import App from './src/app/App';
// registerRootComponent calls AppRegistry.registerComponent('main', () => App);
// It also ensures that whether you load the app in Expo Go or in a native build,
// the environment is set up appropriately
registerRootComponent(App);