import type { FC } from "react"; type ConfirmModalProps = { message: string; onConfirm: () => void; onCancel: () => void; }; const ConfirmModal: FC = ({ message, onConfirm, onCancel, }) => { return (

{message}

); }; export default ConfirmModal;