"use client"; import { motion } from "framer-motion"; interface IProps { phone: string; ticket: string; isNew: boolean; winnerNumber: number; } const LotteryWinner = ({ phone, ticket, isNew, winnerNumber }: IProps) => { return (

The winner of the {winnerNumber} stage:

{phone}

{ticket}

); }; export default LotteryWinner;