diff options
| author | nsfisis <nsfisis@gmail.com> | 2024-08-11 20:48:01 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2024-08-11 20:48:01 +0900 |
| commit | 6d37bdd6b2f5272cacaace60cfd14e0847b0096a (patch) | |
| tree | fc7facefebc19ada6c8684c87c26691b37220320 /frontend/app/components/GolfPlayApps/GolfPlayAppGaming.tsx | |
| parent | dbbbf887c8a2a7b196c9706c2a0ef2f443a5d918 (diff) | |
| download | iosdc-japan-2024-albatross-6d37bdd6b2f5272cacaace60cfd14e0847b0096a.tar.gz iosdc-japan-2024-albatross-6d37bdd6b2f5272cacaace60cfd14e0847b0096a.tar.zst iosdc-japan-2024-albatross-6d37bdd6b2f5272cacaace60cfd14e0847b0096a.zip | |
feat(frontend): obtain `problem` from `Game` object instead of `prepare` message's payload
Diffstat (limited to 'frontend/app/components/GolfPlayApps/GolfPlayAppGaming.tsx')
| -rw-r--r-- | frontend/app/components/GolfPlayApps/GolfPlayAppGaming.tsx | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/frontend/app/components/GolfPlayApps/GolfPlayAppGaming.tsx b/frontend/app/components/GolfPlayApps/GolfPlayAppGaming.tsx index fdf0e0c..31927a5 100644 --- a/frontend/app/components/GolfPlayApps/GolfPlayAppGaming.tsx +++ b/frontend/app/components/GolfPlayApps/GolfPlayAppGaming.tsx @@ -1,7 +1,8 @@ import React, { useRef } from "react"; type Props = { - problem: string; + problemTitle: string; + problemDescription: string; onCodeChange: (code: string) => void; onCodeSubmit: (code: string) => void; currentScore: number | null; @@ -9,7 +10,8 @@ type Props = { }; export default function GolfPlayAppGaming({ - problem, + problemTitle, + problemDescription, onCodeChange, onCodeSubmit, currentScore, @@ -32,8 +34,8 @@ export default function GolfPlayAppGaming({ <div className="mx-auto flex min-h-full flex-grow"> <div className="flex w-1/2 flex-col justify-between p-4"> <div> - <div className="mb-2 text-xl font-bold">TODO</div> - <div className="text-gray-700">{problem}</div> + <div className="mb-2 text-xl font-bold">{problemTitle}</div> + <div className="text-gray-700">{problemDescription}</div> </div> <div className="mb-4 mt-auto"> <div className="mb-2"> |
