import type { SentenceResult } from "../api"; export default function SentenceBreakdown({ sentences }: { sentences: SentenceResult[] }) { if (sentences.length === 0) return null; return ( ); }