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 --- .../GolfWatchApps/GolfWatchAppConnecting.tsx | 18 +++--- .../GolfWatchApps/GolfWatchAppFinished.tsx | 14 ++--- .../GolfWatchApps/GolfWatchAppGaming.tsx | 70 +++++++++++----------- .../GolfWatchApps/GolfWatchAppStarting.tsx | 20 +++---- .../GolfWatchApps/GolfWatchAppWaiting.tsx | 2 +- 5 files changed, 62 insertions(+), 62 deletions(-) (limited to 'frontend/app/components/GolfWatchApps') diff --git a/frontend/app/components/GolfWatchApps/GolfWatchAppConnecting.tsx b/frontend/app/components/GolfWatchApps/GolfWatchAppConnecting.tsx index b91339a..3704656 100644 --- a/frontend/app/components/GolfWatchApps/GolfWatchAppConnecting.tsx +++ b/frontend/app/components/GolfWatchApps/GolfWatchAppConnecting.tsx @@ -1,11 +1,11 @@ export default function GolfWatchAppConnecting() { - return ( -
-
-

- Connecting... -

-
-
- ); + return ( +
+
+

+ Connecting... +

+
+
+ ); } diff --git a/frontend/app/components/GolfWatchApps/GolfWatchAppFinished.tsx b/frontend/app/components/GolfWatchApps/GolfWatchAppFinished.tsx index 866e18a..58cb2df 100644 --- a/frontend/app/components/GolfWatchApps/GolfWatchAppFinished.tsx +++ b/frontend/app/components/GolfWatchApps/GolfWatchAppFinished.tsx @@ -1,9 +1,9 @@ export default function GolfWatchAppFinished() { - return ( -
-
-

Finished

-
-
- ); + return ( +
+
+

Finished

+
+
+ ); } diff --git a/frontend/app/components/GolfWatchApps/GolfWatchAppGaming.tsx b/frontend/app/components/GolfWatchApps/GolfWatchAppGaming.tsx index 10d68fe..22277f8 100644 --- a/frontend/app/components/GolfWatchApps/GolfWatchAppGaming.tsx +++ b/frontend/app/components/GolfWatchApps/GolfWatchAppGaming.tsx @@ -1,41 +1,41 @@ type Props = { - problem: string; - codeA: string; - scoreA: number | null; - codeB: string; - scoreB: number | null; + problem: string; + codeA: string; + scoreA: number | null; + codeB: string; + scoreB: number | null; }; export default function GolfWatchAppGaming({ - problem, - codeA, - scoreA, - codeB, - scoreB, + problem, + codeA, + scoreA, + codeB, + scoreB, }: Props) { - return ( -
-
-
{problem}
-
-
-
-
{scoreA}
-
-
-              {codeA}
-            
-
-
-
-
{scoreB}
-
-
-              {codeB}
-            
-
-
-
-
- ); + return ( +
+
+
{problem}
+
+
+
+
{scoreA}
+
+
+							{codeA}
+						
+
+
+
+
{scoreB}
+
+
+							{codeB}
+						
+
+
+
+
+ ); } diff --git a/frontend/app/components/GolfWatchApps/GolfWatchAppStarting.tsx b/frontend/app/components/GolfWatchApps/GolfWatchAppStarting.tsx index 3c9919c..ef72cec 100644 --- a/frontend/app/components/GolfWatchApps/GolfWatchAppStarting.tsx +++ b/frontend/app/components/GolfWatchApps/GolfWatchAppStarting.tsx @@ -1,15 +1,15 @@ type Props = { - timeLeft: number; + timeLeft: number; }; export default function GolfWatchAppStarting({ timeLeft }: Props) { - return ( -
-
-

- Starting... ({timeLeft} s) -

-
-
- ); + return ( +
+
+

+ Starting... ({timeLeft} s) +

+
+
+ ); } diff --git a/frontend/app/components/GolfWatchApps/GolfWatchAppWaiting.tsx b/frontend/app/components/GolfWatchApps/GolfWatchAppWaiting.tsx index 6733b3b..d58ec19 100644 --- a/frontend/app/components/GolfWatchApps/GolfWatchAppWaiting.tsx +++ b/frontend/app/components/GolfWatchApps/GolfWatchAppWaiting.tsx @@ -1,3 +1,3 @@ export default function GolfWatchAppWaiting() { - return
Waiting...
; + return
Waiting...
; } -- cgit v1.2.3-70-g09d2