aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/src/routes/golf/play/apps/Connecting.tsx
blob: 594a291a7689322b58dcb7f30ddf280040b6fe0a (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>
  );
}