aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/src/routes/golf/play/apps/Starting.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/routes/golf/play/apps/Starting.tsx')
-rw-r--r--frontend/src/routes/golf/play/apps/Starting.tsx13
1 files changed, 0 insertions, 13 deletions
diff --git a/frontend/src/routes/golf/play/apps/Starting.tsx b/frontend/src/routes/golf/play/apps/Starting.tsx
deleted file mode 100644
index b260b30..0000000
--- a/frontend/src/routes/golf/play/apps/Starting.tsx
+++ /dev/null
@@ -1,13 +0,0 @@
-type Props = {
- gameId: number;
- playerId: number;
- timeLeft: number | null;
-};
-
-export default function Starting({ timeLeft }: Props) {
- return (
- <>
- <div>対戦相手が見つかりました。{timeLeft} 秒後にゲームを開始します。</div>
- </>
- );
-}