Files
react-native-ref/packages/app/index.js
Morten Olsen 7db07922aa init
2024-06-27 11:54:49 +02:00

8 lines
314 B
JavaScript

import { registerRootComponent } from 'expo';
import { App } from './src/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);