Bluesky app fork with some witchin' additions 馃挮
at main 616 B view raw
1import 'react-native-gesture-handler' // must be first 2import '#/platform/polyfills' 3 4import {LogBox} from 'react-native' 5import {registerRootComponent} from 'expo' 6 7import App from '#/App' 8 9if (process.env.NODE_ENV === 'test') { 10 LogBox.ignoreAllLogs() // suppress all logs in tests 11} else { 12 LogBox.ignoreLogs(['Require cycle:']) // suppress require-cycle warnings, it's fine 13} 14 15// registerRootComponent calls AppRegistry.registerComponent('main', () => App); 16// It also ensures that whether you load the app in Expo Go or in a native build, 17// the environment is set up appropriately 18registerRootComponent(App)