aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/components/Gaming/ProblemColumn.tsx
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-09-05 20:52:43 +0900
committernsfisis <nsfisis@gmail.com>2025-09-05 20:53:02 +0900
commit82d3cf35c3c6b85b48c94dd6301c8bf718669b8d (patch)
treec09c53a3ae1f51aba02902d4f32ffafdf7fb562a /frontend/app/components/Gaming/ProblemColumn.tsx
parentdd1c68425120fca008a3b10991c865ea586c7002 (diff)
downloadiosdc-japan-2025-albatross-82d3cf35c3c6b85b48c94dd6301c8bf718669b8d.tar.gz
iosdc-japan-2025-albatross-82d3cf35c3c6b85b48c94dd6301c8bf718669b8d.tar.zst
iosdc-japan-2025-albatross-82d3cf35c3c6b85b48c94dd6301c8bf718669b8d.zip
feat(frontend): support swift language
Diffstat (limited to 'frontend/app/components/Gaming/ProblemColumn.tsx')
-rw-r--r--frontend/app/components/Gaming/ProblemColumn.tsx9
1 files changed, 8 insertions, 1 deletions
diff --git a/frontend/app/components/Gaming/ProblemColumn.tsx b/frontend/app/components/Gaming/ProblemColumn.tsx
index 3b7e58c..a355ac4 100644
--- a/frontend/app/components/Gaming/ProblemColumn.tsx
+++ b/frontend/app/components/Gaming/ProblemColumn.tsx
@@ -1,20 +1,27 @@
+import type { SupportedLanguage } from "../../types/SupportedLanguage";
import TitledColumn from "../TitledColumn";
import ProblemColumnContent from "./ProblemColumnContent";
type Props = {
title: string;
description: string;
+ language: SupportedLanguage;
sampleCode: string;
};
export default function ProblemColumn({
title,
description,
+ language,
sampleCode,
}: Props) {
return (
<TitledColumn title={title}>
- <ProblemColumnContent description={description} sampleCode={sampleCode} />
+ <ProblemColumnContent
+ description={description}
+ sampleCode={sampleCode}
+ language={language}
+ />
</TitledColumn>
);
}