File tree Expand file tree Collapse file tree 3 files changed +19
-0
lines changed
babel-plugin-react-native-web/src Expand file tree Collapse file tree 3 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ module.exports = {
26
26
KeyboardAvoidingView : true ,
27
27
LayoutAnimation : true ,
28
28
Linking : true ,
29
+ LogBox : true ,
29
30
Modal : true ,
30
31
NativeEventEmitter : true ,
31
32
NativeModules : true ,
Original file line number Diff line number Diff line change
1
+ /**
2
+ * Copyright (c) 2016-present, Nicolas Gallagher.
3
+ *
4
+ * This source code is licensed under the MIT license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ *
7
+ * @flow
8
+ */
9
+
10
+ const LogBox = {
11
+ ignoreLogs ( ) { } ,
12
+ ignoreAllLogs ( ) { } ,
13
+ uninstall ( ) { } ,
14
+ install ( ) { }
15
+ } ;
16
+
17
+ export default LogBox ;
Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ export { default as TouchableWithoutFeedback } from './exports/TouchableWithoutF
59
59
export { default as View } from './exports/View' ;
60
60
export { default as VirtualizedList } from './exports/VirtualizedList' ;
61
61
export { default as YellowBox } from './exports/YellowBox' ;
62
+ export { default as LogBox } from './exports/LogBox' ;
62
63
63
64
// compat (components)
64
65
export { default as DrawerLayoutAndroid } from './exports/DrawerLayoutAndroid' ;
You can’t perform that action at this time.
0 commit comments