* Lazy loading Android modules * Remove react-native-bottom-sheet * Remove comments * npm audit fix * Update rnn-v2 modals * audit fix * Fix tests
10 lines
320 B
JavaScript
10 lines
320 B
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {ActionSheetIOS} from 'react-native';
|
|
|
|
export default {
|
|
showBottomSheetWithOptions: (options, callback) => {
|
|
return ActionSheetIOS.showActionSheetWithOptions(options, callback);
|
|
},
|
|
};
|