diff options
| author | nsfisis <nsfisis@gmail.com> | 2024-07-23 21:21:51 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2024-07-23 22:00:35 +0900 |
| commit | 20c4d9e8ba120fefca3cc1e91119f55186cc793b (patch) | |
| tree | 9e61703ed217b20d8439fab15afca68b20882c2f /frontend/src/routes/golf/watch/apps/Gaming.tsx | |
| parent | 65227f15a4e92fdd7b2fabe5bac797f293da683e (diff) | |
| download | phperkaigi-2025-albatross-20c4d9e8ba120fefca3cc1e91119f55186cc793b.tar.gz phperkaigi-2025-albatross-20c4d9e8ba120fefca3cc1e91119f55186cc793b.tar.zst phperkaigi-2025-albatross-20c4d9e8ba120fefca3cc1e91119f55186cc793b.zip | |
frontend: format
Diffstat (limited to 'frontend/src/routes/golf/watch/apps/Gaming.tsx')
| -rw-r--r-- | frontend/src/routes/golf/watch/apps/Gaming.tsx | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/frontend/src/routes/golf/watch/apps/Gaming.tsx b/frontend/src/routes/golf/watch/apps/Gaming.tsx index 623cb08..3f9c195 100644 --- a/frontend/src/routes/golf/watch/apps/Gaming.tsx +++ b/frontend/src/routes/golf/watch/apps/Gaming.tsx @@ -7,7 +7,13 @@ type Props = { codeB: string | null; }; -export default ({ problem, scoreA, codeA, scoreB, codeB }: Props) => { +export default function Gaming({ + problem, + scoreA, + codeA, + scoreB, + codeB, +}: Props) { return ( <> <div style={{ display: "flex", flexDirection: "column" }}> @@ -35,4 +41,4 @@ export default ({ problem, scoreA, codeA, scoreB, codeB }: Props) => { </div> </> ); -}; +} |
