BlueWallet/screen/ActionSheet.ios.js
2020-04-03 16:09:49 +01:00

8 lines
216 B
JavaScript

import { ActionSheetIOS } from 'react-native';
export default class ActionSheet {
static showActionSheetWithOptions(options, completion) {
ActionSheetIOS.showActionSheetWithOptions(options, completion);
}
}