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

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