type Props = { timeLeft: number; }; export default function GolfPlayAppStarting({ timeLeft }: Props) { return (

Starting... ({timeLeft} s)

); }