railbird-gql/index.js

9 lines
307 B
JavaScript
Raw Normal View History

import { registerRootComponent } from "expo";
2024-01-26 12:06:11 -07:00
import App from "./App";
2024-01-26 12:06:11 -07:00
// 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);