mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-20 02:09:10 +01:00
7 lines
157 B
JavaScript
7 lines
157 B
JavaScript
|
import { Alert } from 'react-native';
|
||
|
import loc from '../loc';
|
||
|
const alert = string => {
|
||
|
Alert.alert(loc.alert.default, string);
|
||
|
};
|
||
|
export default alert;
|