BlueWallet/components/Alert.ts

7 lines
163 B
TypeScript
Raw Normal View History

import { Alert } from 'react-native';
import loc from '../loc';
2024-01-07 00:37:02 -04:00
const alert = (text: string) => {
Alert.alert(loc.alert.default, text);
};
export default alert;