BlueWallet/components/Alert.js

7 lines
157 B
JavaScript
Raw Normal View History

import { Alert } from 'react-native';
import loc from '../loc';
const alert = string => {
Alert.alert(loc.alert.default, string);
};
export default alert;