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

{title}

{message}

); }