blob: 3d02efddbb7c811c620e073529d30d58154f30e7 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
|
/**
* Ignore some yellowbox warnings. Some of these are for deprecated functions
* that we haven't gotten around to replacing yet.
*/
import { LogBox } from 'react-native'
// prettier-ignore
LogBox.ignoreLogs([
"Require cycle:",
])
|