blob: 3c9919cbc3738a5e9da8fc6f1746bb8e0988ca02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
type Props = {
timeLeft: number;
};
export default function GolfWatchAppStarting({ timeLeft }: Props) {
return (
<div className="min-h-screen bg-gray-100 flex items-center justify-center">
<div className="text-center">
<h1 className="text-4xl font-bold text-black-600 mb-4">
Starting... ({timeLeft} s)
</h1>
</div>
</div>
);
}
|