Skip to content

Commit 0e539fc

Browse files
committed
Fix export of keyboard components
1 parent 030ea61 commit 0e539fc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/components/Keyboard/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ import KeyboardRegistry from './KeyboardInput/KeyboardRegistry';
44
import KeyboardAccessoryView from './KeyboardInput/KeyboardAccessoryView';
55
import KeyboardUtils from './KeyboardInput/utils/KeyboardUtils';
66

7-
export {KeyboardTrackingView, KeyboardAwareInsetsView, KeyboardRegistry, KeyboardAccessoryView, KeyboardUtils};
7+
export default {KeyboardTrackingView, KeyboardAwareInsetsView, KeyboardRegistry, KeyboardAccessoryView, KeyboardUtils};

src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ export default {
231231
return require('./services').LogService;
232232
},
233233

234-
// NativeComponents
234+
// NativeComponents
235235
get HighlighterOverlayView() {
236236
return require('./nativeComponents').HighlighterOverlayView;
237237
},
@@ -245,7 +245,7 @@ export default {
245245
return require('./nativeComponents').SafeAreaInsetsManager;
246246
},
247247
get Keyboard() {
248-
return require('./nativeComponents').Keyboard;
248+
return require('../lib/components/Keyboard').default;
249249
},
250250

251251
// Style

0 commit comments

Comments
 (0)