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

export default (_props: Props) => {
  return (
    <div>
      対戦相手が現れるのを待っています......
    </div>
  );
}