aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/components/GolfWatchApps/GolfWatchAppWaiting.tsx
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-03-08 10:32:05 +0900
committernsfisis <nsfisis@gmail.com>2025-03-08 10:39:25 +0900
commitc889a9ad33374eae03cec5b0358d79016d6fd97e (patch)
tree852a080bc1b0e68e5f46f8bca0ff787aafd314e1 /frontend/app/components/GolfWatchApps/GolfWatchAppWaiting.tsx
parent8dbdf96e674c1e26d7c98af8d0608f30bc1bf166 (diff)
downloadphperkaigi-2025-albatross-c889a9ad33374eae03cec5b0358d79016d6fd97e.tar.gz
phperkaigi-2025-albatross-c889a9ad33374eae03cec5b0358d79016d6fd97e.tar.zst
phperkaigi-2025-albatross-c889a9ad33374eae03cec5b0358d79016d6fd97e.zip
show ranking
Diffstat (limited to 'frontend/app/components/GolfWatchApps/GolfWatchAppWaiting.tsx')
-rw-r--r--frontend/app/components/GolfWatchApps/GolfWatchAppWaiting.tsx27
1 files changed, 0 insertions, 27 deletions
diff --git a/frontend/app/components/GolfWatchApps/GolfWatchAppWaiting.tsx b/frontend/app/components/GolfWatchApps/GolfWatchAppWaiting.tsx
deleted file mode 100644
index c2a5431..0000000
--- a/frontend/app/components/GolfWatchApps/GolfWatchAppWaiting.tsx
+++ /dev/null
@@ -1,27 +0,0 @@
-import type { PlayerProfile } from "../../types/PlayerProfile";
-import PlayerNameAndIcon from "../PlayerNameAndIcon";
-
-type Props = {
- gameDisplayName: string;
- playerProfileA: PlayerProfile;
- playerProfileB: PlayerProfile;
-};
-
-export default function GolfWatchAppWaiting({
- gameDisplayName,
- playerProfileA,
- playerProfileB,
-}: Props) {
- return (
- <div className="min-h-screen bg-gray-100 flex flex-col font-bold text-center">
- <div className="text-white bg-sky-600 p-10">
- <div className="text-4xl">{gameDisplayName}</div>
- </div>
- <div className="grow grid grid-cols-3 gap-10 mx-auto text-black">
- <PlayerNameAndIcon label="Player 1" profile={playerProfileA} />
- <div className="text-8xl my-auto">vs.</div>
- <PlayerNameAndIcon label="Player 2" profile={playerProfileB} />
- </div>
- </div>
- );
-}