import React from 'react'; import { motion } from 'framer-motion'; import { Clock } from 'lucide-react'; interface WaitingToRejoinProps { playerName: string; score: number; } export const WaitingToRejoin: React.FC = ({ playerName, score }) => { return (

Welcome Back!

{playerName}

Your Score

{score.toLocaleString()}

Waiting for the current question to finish...

); };