type Props = { content: string; speakerA: string; speakerB: string } export default function DebateView({ content, speakerA, speakerB }: Props) { if (!content) { return
Waiting for debate to complete…
} const turns = content.split(/\n{2,}/).filter(Boolean) return ({turn}