this repo has no description
1import './polyfill'
2
3import { registerRootComponent } from 'expo'
4
5import App from './App'
6
7// const App = require("./App").default;
8
9// registerRootComponent calls AppRegistry.registerComponent('main', () => App);
10// It also ensures that whether you load the app in Expo Go or in a native build,
11// the environment is set up appropriately
12registerRootComponent(App)