From ead436de1b081ace0f964593f546af9b3f034890 Mon Sep 17 00:00:00 2001 From: Hassan Khan Date: Fri, 12 Sep 2025 14:17:47 +0100 Subject: [PATCH] chore: restore `index.js` in `apps/app` --- apps/app/index.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 apps/app/index.js diff --git a/apps/app/index.js b/apps/app/index.js new file mode 100644 index 00000000..87801082 --- /dev/null +++ b/apps/app/index.js @@ -0,0 +1,8 @@ +import { registerRootComponent } from "expo"; + +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);