xref: /expo/packages/expo-router/entry.js (revision 26ad19fc)
1// `@expo/metro-runtime` MUST be the first import to ensure Fast Refresh works
2// on web.
3import '@expo/metro-runtime';
4
5import { App } from 'expo-router/build/qualified-entry';
6import { renderRootComponent } from 'expo-router/build/renderRootComponent';
7
8// This file should only import and register the root. No components or exports
9// should be added here.
10renderRootComponent(App);
11