aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/src/routes/golf/watch/apps/Gaming.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/routes/golf/watch/apps/Gaming.tsx')
-rw-r--r--frontend/src/routes/golf/watch/apps/Gaming.tsx10
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>
</>
);
-};
+}