Files
bestpc_mobile/index.ts

10 lines
308 B
TypeScript
Raw Normal View History

2025-05-19 12:00:33 +07:00
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);
2025-07-18 16:04:59 +07:00