import { Button } from "@/components/ui/button"; import { motion } from "framer-motion"; interface GameOverProps { successfulRounds: number; onViewHighScores: () => void; onPlayAgain: () => void; } export const GameOver = ({ successfulRounds, onViewHighScores, onPlayAgain, }: GameOverProps) => { return (

Game Over!

You completed {successfulRounds} rounds successfully!

); };