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

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