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.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/routes/golf/play/apps/Starting.tsx b/frontend/src/routes/golf/play/apps/Starting.tsx
index ae77853..b260b30 100644
--- a/frontend/src/routes/golf/play/apps/Starting.tsx
+++ b/frontend/src/routes/golf/play/apps/Starting.tsx
@@ -4,10 +4,10 @@ type Props = {
timeLeft: number | null;
};
-export default ({ timeLeft }: Props) => {
+export default function Starting({ timeLeft }: Props) {
return (
<>
<div>対戦相手が見つかりました。{timeLeft} 秒後にゲームを開始します。</div>
</>
);
-};
+}