aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/components/GolfWatchApps/GolfWatchAppConnecting.tsx
blob: 07a1be8f4c81414a619f0a338da6b51641d7cdc1 (plain)
1
2
3
4
5
6
7
8
9
export default function GolfWatchAppConnecting() {
	return (
		<div className="min-h-screen bg-gray-100 flex items-center justify-center">
			<div className="text-center">
				<div className="text-6xl font-bold text-black">接続中...</div>
			</div>
		</div>
	);
}