From d73fd8bf5bf589a4a391c867e980761fadb647ce Mon Sep 17 00:00:00 2001 From: nsfisis Date: Mon, 29 Jul 2024 03:44:10 +0900 Subject: feat: partially implement watching --- .../GolfWatchApps/GolfWatchAppGaming.tsx | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 frontend/app/components/GolfWatchApps/GolfWatchAppGaming.tsx (limited to 'frontend/app/components/GolfWatchApps/GolfWatchAppGaming.tsx') diff --git a/frontend/app/components/GolfWatchApps/GolfWatchAppGaming.tsx b/frontend/app/components/GolfWatchApps/GolfWatchAppGaming.tsx new file mode 100644 index 0000000..d58a04f --- /dev/null +++ b/frontend/app/components/GolfWatchApps/GolfWatchAppGaming.tsx @@ -0,0 +1,39 @@ +export default function GolfWatchAppGaming({ + problem, + codeA, + scoreA, + codeB, + scoreB, +}: { + problem: string; + codeA: string; + scoreA: number | null; + codeB: string; + scoreB: number | null; +}) { + return ( +
+
+
{problem}
+
+
+
+
{scoreA}
+
+
+              {codeA}
+            
+
+
+
+
{scoreB}
+
+
+              {codeB}
+            
+
+
+
+
+ ); +} -- cgit v1.2.3-70-g09d2