mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1import 'react-native-gesture-handler' // must be first
2
3import {LogBox} from 'react-native'
4LogBox.ignoreLogs(['Require cycle:']) // suppress require-cycle warnings, it's fine
5
6import 'platform/polyfills'
7import {registerRootComponent} from 'expo'
8
9import App from './src/App'
10
11// registerRootComponent calls AppRegistry.registerComponent('main', () => App);
12// It also ensures that whether you load the app in Expo Go or in a native build,
13// the environment is set up appropriately
14registerRootComponent(App)