aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/components/GolfWatchApps/GolfWatchAppStarting.tsx
blob: 8282fb4ea3f8336d79382e6b9ce4e2fa3e32d314 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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">
				<h1 className="text-4xl font-bold text-black-600 mb-4">
					Starting... ({timeLeft} s)
				</h1>
			</div>
		</div>
	);
}