aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/components/GolfPlayApps/GolfPlayAppConnecting.tsx
blob: 6a954c168171eb54b7c76b937bac655bbe92ceb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
export default function GolfPlayAppConnecting() {
  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">
          Connecting...
        </h1>
      </div>
    </div>
  );
}