mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-21 14:34:55 +01:00
7 lines
215 B
JavaScript
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 });
|
|
}
|
|
}
|