From 8f2cceacc8fde328033de7f05bb12e7b1246dd86 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Thu, 1 Aug 2024 22:22:12 +0900 Subject: chore(frontend): [biome] format --- .../components/GolfPlayApps/GolfPlayAppGaming.tsx | 68 +++++++++++----------- 1 file changed, 34 insertions(+), 34 deletions(-) (limited to 'frontend/app/components/GolfPlayApps/GolfPlayAppGaming.tsx') diff --git a/frontend/app/components/GolfPlayApps/GolfPlayAppGaming.tsx b/frontend/app/components/GolfPlayApps/GolfPlayAppGaming.tsx index fc672f5..75ab18e 100644 --- a/frontend/app/components/GolfPlayApps/GolfPlayAppGaming.tsx +++ b/frontend/app/components/GolfPlayApps/GolfPlayAppGaming.tsx @@ -1,41 +1,41 @@ type Props = { - problem: string; - onCodeChange: (code: string) => void; - currentScore: number | null; + problem: string; + onCodeChange: (code: string) => void; + currentScore: number | null; }; export default function GolfPlayAppGaming({ - problem, - onCodeChange, - currentScore, + problem, + onCodeChange, + currentScore, }: Props) { - const handleTextChange = (e: React.ChangeEvent) => { - onCodeChange(e.target.value); - }; + const handleTextChange = (e: React.ChangeEvent) => { + onCodeChange(e.target.value); + }; - return ( -
-
-
-
-
TODO
-
{problem}
-
-
-
- Score: {currentScore == null ? "-" : `${currentScore}`} -
-
-
-
-
- -
-
-
-
- ); + return ( +
+
+
+
+
TODO
+
{problem}
+
+
+
+ Score: {currentScore == null ? "-" : `${currentScore}`} +
+
+
+
+
+ +
+
+
+
+ ); } -- cgit v1.2.3-70-g09d2