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

export default function Connecting(_props: Props) {
  return <div>接続中です......</div>;
}