import {__} from '@wordpress/i18n'; import ModalDialog from '@givewp/components/AdminUI/ModalDialog'; import {store} from '../../tabs/recurring-donations/store'; import {setError} from '../../tabs/recurring-donations/store/actions'; import './style.scss'; type ErrorMessageProps = { error: string; }; export default function ErrorMessage({error}: ErrorMessageProps) { const {dispatch} = store; const toggleModal = () => { dispatch(setError(null)); }; return (

{error}

); }