aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/components/GolfPlayApps/GolfPlayAppLoading.tsx
blob: 7b424f2610bed9a74ad0b25e9f05171423b4ea2a (plain)
1
2
3
4
5
6
7
8
9
export default function GolfPlayAppLoading() {
	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>
	);
}