Files
drip/components/settings/alert-error.js
T
2018-09-16 11:47:05 +02:00

6 lines
176 B
JavaScript

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