interface ConfirmDialogProps { isOpen: boolean; message: string; onConfirm: () => void; onCancel: () => void; } export const ConfirmDialog = ({ isOpen, message, onConfirm, onCancel }: ConfirmDialogProps) => { if (!isOpen) return null; return (
{message}