Files
drip/components/settings/shared/alert-error.js
T
2019-01-09 22:33:42 +01:00

6 lines
190 B
JavaScript

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