tooot/index.js

9 lines
316 B
JavaScript
Raw Normal View History

2022-08-12 16:44:28 +02:00
import { registerRootComponent } from 'expo'
2021-01-28 00:41:53 +01:00
2022-08-12 16:44:28 +02:00
import App from '@root/App'
2021-01-28 00:41:53 +01:00
// registerRootComponent calls AppRegistry.registerComponent('main', () => App);
// It also ensures that whether you load the app in the Expo client or in a native build,
// the environment is set up appropriately
2022-08-12 16:44:28 +02:00
registerRootComponent(App)