aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/components/GolfWatchApps/GolfWatchAppWaitingMultiplayer.tsx
blob: de742b4515c058d82d27b1c6391abf826bafdfc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
type Props = {
  gameDisplayName: string;
};

export default function GolfWatchAppWaitingMultiplayer({
  gameDisplayName,
}: Props) {
  return (
    <div className="min-h-screen bg-gray-100 flex flex-col font-bold text-center">
      <div className="text-white bg-brand-600 p-10">
        <div className="text-4xl">{gameDisplayName}</div>
      </div>
    </div>
  );
}