diff options
Diffstat (limited to 'frontend/src/routes/golf/watch/apps/Connecting.tsx')
| -rw-r--r-- | frontend/src/routes/golf/watch/apps/Connecting.tsx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/frontend/src/routes/golf/watch/apps/Connecting.tsx b/frontend/src/routes/golf/watch/apps/Connecting.tsx new file mode 100644 index 0000000..6f1f356 --- /dev/null +++ b/frontend/src/routes/golf/watch/apps/Connecting.tsx @@ -0,0 +1,11 @@ +type Props = { + gameId: number; +}; + +export default (_props: Props) => { + return ( + <div> + 接続中です...... + </div> + ); +} |
