diff options
Diffstat (limited to 'frontend/src/routes/golf/watch/apps/Waiting.tsx')
| -rw-r--r-- | frontend/src/routes/golf/watch/apps/Waiting.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/routes/golf/watch/apps/Waiting.tsx b/frontend/src/routes/golf/watch/apps/Waiting.tsx index e8d5390..a82ee69 100644 --- a/frontend/src/routes/golf/watch/apps/Waiting.tsx +++ b/frontend/src/routes/golf/watch/apps/Waiting.tsx @@ -2,6 +2,6 @@ type Props = { gameId: number; }; -export default (_props: Props) => { +export default function Waiting(_props: Props) { return <div>対戦相手が現れるのを待っています......</div>; -}; +} |
