mirror of
https://github.com/morten-olsen/bob-the-algorithm.git
synced 2026-02-08 00:46:25 +01:00
11 lines
330 B
TypeScript
11 lines
330 B
TypeScript
import { registerRootComponent } from 'expo';
|
|
import './setup';
|
|
|
|
import { App } from './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);
|
|
|