diff options
Diffstat (limited to 'frontend/app/components/GolfPlayApps/GolfPlayAppConnecting.tsx')
| -rw-r--r-- | frontend/app/components/GolfPlayApps/GolfPlayAppConnecting.tsx | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/frontend/app/components/GolfPlayApps/GolfPlayAppConnecting.tsx b/frontend/app/components/GolfPlayApps/GolfPlayAppConnecting.tsx index e92a8e0..6a954c1 100644 --- a/frontend/app/components/GolfPlayApps/GolfPlayAppConnecting.tsx +++ b/frontend/app/components/GolfPlayApps/GolfPlayAppConnecting.tsx @@ -1,3 +1,11 @@ export default function GolfPlayAppConnecting() { - return <div>Connecting...</div>; + 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> + ); } |
