aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/src/routes/golf/play/apps/Connecting.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/routes/golf/play/apps/Connecting.tsx')
-rw-r--r--frontend/src/routes/golf/play/apps/Connecting.tsx12
1 files changed, 12 insertions, 0 deletions
diff --git a/frontend/src/routes/golf/play/apps/Connecting.tsx b/frontend/src/routes/golf/play/apps/Connecting.tsx
new file mode 100644
index 0000000..594a291
--- /dev/null
+++ b/frontend/src/routes/golf/play/apps/Connecting.tsx
@@ -0,0 +1,12 @@
+type Props = {
+ gameId: number;
+ playerId: number;
+};
+
+export default (_props: Props) => {
+ return (
+ <div>
+ 接続中です......
+ </div>
+ );
+}