'use client' import type { AdvisorTurn } from './useAdvisorStream' import { StatsBar } from './StatsBar' import { AnswerPane } from './AnswerPane' import { SourcesPane } from './SourcesPane' import { FiguresPane } from './FiguresPane' import { FootnotesPane } from './FootnotesPane' /** One question/answer turn rendered as stacked evidence panels. */ export function TurnView({ turn, showQuestion }: { turn: AdvisorTurn; showQuestion?: boolean }) { const streaming = turn.status === 'streaming' return (
{showQuestion && (
Frage: {turn.question}
)}
) }