diff options
Diffstat (limited to 'frontend/src/routes/golf/play/apps/Waiting.tsx')
| -rw-r--r-- | frontend/src/routes/golf/play/apps/Waiting.tsx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/frontend/src/routes/golf/play/apps/Waiting.tsx b/frontend/src/routes/golf/play/apps/Waiting.tsx new file mode 100644 index 0000000..8112c22 --- /dev/null +++ b/frontend/src/routes/golf/play/apps/Waiting.tsx @@ -0,0 +1,12 @@ +type Props = { + gameId: number; + playerId: number; +}; + +export default (_props: Props) => { + return ( + <div> + 対戦相手が現れるのを待っています...... + </div> + ); +} |
