interface DeleteConfirmModalProps { title: string message: string onConfirm: () => void onCancel: () => void isDeleting?: boolean error?: string | null } export function DeleteConfirmModal({ title, message, onConfirm, onCancel, isDeleting, error, }: DeleteConfirmModalProps) { return (

{title}

{message}

{error && (

{error}

)}
) }