aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/src/routes/golf/watch/apps/Failed.tsx
blob: 70d36936f90655249e41cb3c2666f564641a95fd (plain)
1
2
3
4
5
6
7
8
9
10
11
type Props = {
  gameId: number;
};

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