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