Files
drip/components/settings/common/alert-error.js
2022-08-23 13:00:25 +02:00

7 lines
191 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)
}