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

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