tooot/index.js

9 lines
319 B
JavaScript
Raw Normal View History

2021-01-28 00:41:53 +01:00
import { registerRootComponent } from 'expo';
2021-01-30 01:29:15 +01: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
registerRootComponent(App);