import React from 'react'; import { ModalConfirm, } from 'strapi-helper-plugin'; import getTrad from '../../helpers/getTrad'; const ConfirmModal = ({ isOpen, onClose, onSubmit, type }) => { return ( { onClose(); onSubmit(); }} type="success" content={{ id: getTrad(`popUpWarning.warning.${type}`), values: { br: () =>
, }, }} >
Zeker?
); } export default ConfirmModal;