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;