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