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

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