aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/src/routes/golf/watch/apps/Failed.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/routes/golf/watch/apps/Failed.tsx')
-rw-r--r--frontend/src/routes/golf/watch/apps/Failed.tsx11
1 files changed, 11 insertions, 0 deletions
diff --git a/frontend/src/routes/golf/watch/apps/Failed.tsx b/frontend/src/routes/golf/watch/apps/Failed.tsx
new file mode 100644
index 0000000..70d3693
--- /dev/null
+++ b/frontend/src/routes/golf/watch/apps/Failed.tsx
@@ -0,0 +1,11 @@
+type Props = {
+ gameId: number;
+};
+
+export default (_props: Props) => {
+ return (
+ <div>
+ エラー
+ </div>
+ );
+}