interface Props { title: string lines: string[] confirmLabel: string onConfirm: () => void onCancel: () => void } export default function ConfirmDialog({ title, lines, confirmLabel, onConfirm, onCancel }: Props) { return (

{title}

) }