mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-20 10:12:01 +01:00
7 lines
232 B
TypeScript
7 lines
232 B
TypeScript
import { Alert } from 'react-native';
|
|
import loc from '../loc';
|
|
const presentAlert = ({ title, message }: { title?: string; message: string }) => {
|
|
Alert.alert(title ?? loc.alert.default, message);
|
|
};
|
|
export default presentAlert;
|