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

{sentence.join(" ")}

); };