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

export default function Failed(_props: Props) {
  return <div>エラー</div>;
}