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.tsx15
1 files changed, 15 insertions, 0 deletions
diff --git a/frontend/src/routes/golf/play/apps/Starting.tsx b/frontend/src/routes/golf/play/apps/Starting.tsx
new file mode 100644
index 0000000..1c8fadd
--- /dev/null
+++ b/frontend/src/routes/golf/play/apps/Starting.tsx
@@ -0,0 +1,15 @@
+type Props = {
+ gameId: number;
+ playerId: number;
+ timeLeft: number | null;
+};
+
+export default ({ timeLeft }: Props) => {
+ return (
+ <>
+ <div>
+ 対戦相手が見つかりました。{timeLeft} 秒後にゲームを開始します。
+ </div>
+ </>
+ );
+}