aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/src/routes/golf/play/apps/Starting.tsx
blob: 1c8faddacff948d87928f1123227137be0d83fa0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
type Props = {
  gameId: number;
  playerId: number;
  timeLeft: number | null;
};

export default ({ timeLeft }: Props) => {
  return (
    <>
      <div>
        対戦相手が見つかりました。{timeLeft} 秒後にゲームを開始します。
      </div>
    </>
  );
}