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

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