BlueWallet/components/Alert.js
2021-10-04 02:02:33 -04:00

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;