1
0
Fork 0
mirror of https://github.com/BlueWallet/BlueWallet.git synced 2025-03-16 20:21:35 +01:00
BlueWallet/components/Alert.ts
Marcos Rodriguez Velez dc74adaec0
REF: Alert to TS
2024-01-07 00:37:02 -04:00

6 lines
163 B
TypeScript

import { Alert } from 'react-native';
import loc from '../loc';
const alert = (text: string) => {
Alert.alert(loc.alert.default, text);
};
export default alert;