mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-03-04 04:13:49 +01:00
6 lines
163 B
TypeScript
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;
|