1
0
Fork 0
mirror of https://github.com/BlueWallet/BlueWallet.git synced 2025-03-16 20:21:35 +01:00
BlueWallet/screen/ActionSheet.js

7 lines
215 B
JavaScript

import { Alert } from 'react-native';
export default class ActionSheet {
static showActionSheetWithOptions(options) {
Alert.alert(options.title, options.message, options.buttons, { cancelable: true });
}
}