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

Starting... ({timeLeft} s)

); }