mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 18:00:17 +01:00
8 lines
215 B
JavaScript
8 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 });
|
||
|
}
|
||
|
}
|