import Markdown from "./Markdown"; interface Props { content: string; onBack: () => void; } export default function SummaryFindingsView({ content, onBack }: Props) { return (
{/* Header */}
/ Findings & Summary

Findings & Summary

Definitive statements on what has been learned from experiments

{/* Content */}
{content ? ( ) : ( No findings written yet. )}
); }