A React Native app for the ultimate thinking partner.
at main 388 B view raw
1// Load polyfills first (for React Native stream support) 2import './polyfills'; 3 4import { registerRootComponent } from 'expo'; 5 6import App from './App'; 7 8// registerRootComponent calls AppRegistry.registerComponent('main', () => App); 9// It also ensures that whether you load the app in Expo Go or in a native build, 10// the environment is set up appropriately 11registerRootComponent(App);