tangled mirror of catsky-馃惐 Soothing soft social-app fork with all the niche toggles! (Unofficial); for issues and PRs please put them on github:NekoDrone/catsky-social
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)