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 = {
2626 KeyboardAvoidingView : true ,
2727 LayoutAnimation : true ,
2828 Linking : true ,
29+ LogBox : true ,
2930 Modal : true ,
3031 NativeEventEmitter : true ,
3132 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
5959export { default as View } from './exports/View' ;
6060export { default as VirtualizedList } from './exports/VirtualizedList' ;
6161export { default as YellowBox } from './exports/YellowBox' ;
62+ export { default as LogBox } from './exports/LogBox' ;
6263
6364// compat (components)
6465export { default as DrawerLayoutAndroid } from './exports/DrawerLayoutAndroid' ;
You can’t perform that action at this time.
0 commit comments