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

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