Bluesky app fork with some witchin' additions 馃挮 witchsky.app
bluesky fork client
117
fork

Configure Feed

Select the types of activity you want to include in your feed.

at b87d29a13dfe94e6f4963e548589fb2c2ff4782f 18 lines 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)