import { Button } from "@/components/ui/button"; import { motion } from "framer-motion"; interface WordDisplayProps { currentWord: string; successfulRounds: number; onContinue: () => void; } export const WordDisplay = ({ currentWord, successfulRounds, onContinue }: WordDisplayProps) => { return (

Your Word

{currentWord}

{successfulRounds > 0 && (

Successful rounds: {successfulRounds}

)}

You'll take turns with AI to create a sentence that describes this word.

Click the "Make AI Guess" button to see if another AI can guess it!

); };