aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/src/routes/golf/play/apps/Starting.tsx
blob: ae778533af660604b471f1853e9abca7c0ad69bb (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 ({ timeLeft }: Props) => {
  return (
    <>
      <div>対戦相手が見つかりました。{timeLeft} 秒後にゲームを開始します。</div>
    </>
  );
};