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