Files
drip/components/settings/alert-error.js
T
2018-11-28 15:07:52 +01:00

6 lines
187 B
JavaScript

import { Alert } from 'react-native'
import { shared as sharedLabels } from '../../copy/en/labels'
export default function alertError(msg) {
Alert.alert(sharedLabels.errorTitle, msg)
}