blob: 197d8b493d181804f7a794d45d83a5e248e7b09f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
type Props = {
leftTimeSeconds: number;
};
export default function GolfWatchAppStarting({
leftTimeSeconds: timeLeft,
}: Props) {
return (
<div className="min-h-screen bg-gray-100 flex items-center justify-center">
<div className="text-center text-black font-black text-10xl animate-ping">
{timeLeft}
</div>
</div>
);
}
|