import { h } from 'preact'; import styles from './Modal.module.css'; interface ModalProps { open: boolean; title: string; message: string; onCancel: () => void; onConfirm: () => void; } /** * Generic modal dialog for confirmation. */ const Modal = ({ open, title, message, onCancel, onConfirm }: ModalProps) => { if (!open) return null; return (
{title}
{message}
); }; export default Modal;