diff options
| author | nsfisis <nsfisis@gmail.com> | 2024-08-01 22:22:12 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2024-08-01 22:22:12 +0900 |
| commit | 8f2cceacc8fde328033de7f05bb12e7b1246dd86 (patch) | |
| tree | acb93a52454315c286b9e0f3c624ae1bbcfa32f5 /frontend/app/components/GolfWatchApps/GolfWatchAppGaming.tsx | |
| parent | 00e50b2dcfed209669c46da54dc07905d65887b8 (diff) | |
| download | phperkaigi-2025-albatross-8f2cceacc8fde328033de7f05bb12e7b1246dd86.tar.gz phperkaigi-2025-albatross-8f2cceacc8fde328033de7f05bb12e7b1246dd86.tar.zst phperkaigi-2025-albatross-8f2cceacc8fde328033de7f05bb12e7b1246dd86.zip | |
chore(frontend): [biome] format
Diffstat (limited to 'frontend/app/components/GolfWatchApps/GolfWatchAppGaming.tsx')
| -rw-r--r-- | frontend/app/components/GolfWatchApps/GolfWatchAppGaming.tsx | 70 |
1 files changed, 35 insertions, 35 deletions
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 ( - <div style={{ display: "flex", flexDirection: "column" }}> - <div style={{ display: "flex", flex: 1, justifyContent: "center" }}> - <div>{problem}</div> - </div> - <div style={{ display: "flex", flex: 3 }}> - <div style={{ display: "flex", flex: 3, flexDirection: "column" }}> - <div style={{ flex: 1, justifyContent: "center" }}>{scoreA}</div> - <div style={{ flex: 3 }}> - <pre> - <code>{codeA}</code> - </pre> - </div> - </div> - <div style={{ display: "flex", flex: 3, flexDirection: "column" }}> - <div style={{ flex: 1, justifyContent: "center" }}>{scoreB}</div> - <div style={{ flex: 3 }}> - <pre> - <code>{codeB}</code> - </pre> - </div> - </div> - </div> - </div> - ); + return ( + <div style={{ display: "flex", flexDirection: "column" }}> + <div style={{ display: "flex", flex: 1, justifyContent: "center" }}> + <div>{problem}</div> + </div> + <div style={{ display: "flex", flex: 3 }}> + <div style={{ display: "flex", flex: 3, flexDirection: "column" }}> + <div style={{ flex: 1, justifyContent: "center" }}>{scoreA}</div> + <div style={{ flex: 3 }}> + <pre> + <code>{codeA}</code> + </pre> + </div> + </div> + <div style={{ display: "flex", flex: 3, flexDirection: "column" }}> + <div style={{ flex: 1, justifyContent: "center" }}>{scoreB}</div> + <div style={{ flex: 3 }}> + <pre> + <code>{codeB}</code> + </pre> + </div> + </div> + </div> + </div> + ); } |
