import { Modal, Text, Group, Button } from '@mantine/core'; const ConfirmationModal = ({ opened, handler, text, action }) => { const confirm = () => { action(); handler(); }; return ( Confirmation {text ?? 'Are you sure you want to do this ?'} ); }; export default ConfirmationModal;