blob: 18802fe39edcbb8b401eab6598e129f569388c4c (
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:",
])
|