import { motion } from "framer-motion"; interface SentenceWord { word: string; provider: 'player' | 'ai'; } interface SentenceDisplayProps { sentence: SentenceWord[]; } export const SentenceDisplay = ({ sentence }: SentenceDisplayProps) => { if (!sentence.length) return null; return (

{sentence.map(w => w.word).join(" ")}

); };