aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/components/Gaming/ProblemColumn.tsx
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-03-21 00:44:20 +0900
committernsfisis <nsfisis@gmail.com>2025-03-21 00:44:20 +0900
commit0ab9bdf4ad937913dd3a29dbddf93f09b57deedd (patch)
treea8b5041633caac13f8e2978fed9f71be6b9861b3 /frontend/app/components/Gaming/ProblemColumn.tsx
parent1afd2781818ef5cba0f018811f12cd8653da10b6 (diff)
downloadphperkaigi-2025-albatross-0ab9bdf4ad937913dd3a29dbddf93f09b57deedd.tar.gz
phperkaigi-2025-albatross-0ab9bdf4ad937913dd3a29dbddf93f09b57deedd.tar.zst
phperkaigi-2025-albatross-0ab9bdf4ad937913dd3a29dbddf93f09b57deedd.zip
feat(frontend): make container foldable
Diffstat (limited to 'frontend/app/components/Gaming/ProblemColumn.tsx')
-rw-r--r--frontend/app/components/Gaming/ProblemColumn.tsx14
1 files changed, 7 insertions, 7 deletions
diff --git a/frontend/app/components/Gaming/ProblemColumn.tsx b/frontend/app/components/Gaming/ProblemColumn.tsx
index 2a57afd..922cbe7 100644
--- a/frontend/app/components/Gaming/ProblemColumn.tsx
+++ b/frontend/app/components/Gaming/ProblemColumn.tsx
@@ -1,4 +1,4 @@
-import BorderedContainerWithCaption from "../BorderedContainerWithCaption";
+import FoldableBorderedContainerWithCaption from "../FoldableBorderedContainerWithCaption";
import TitledColumn from "../TitledColumn";
import CodeBlock from "./CodeBlock";
import InlineCode from "./InlineCode";
@@ -16,15 +16,15 @@ export default function ProblemColumn({
}: Props) {
return (
<TitledColumn title={title}>
- <BorderedContainerWithCaption caption="問題">
+ <FoldableBorderedContainerWithCaption caption="問題">
<pre className="text-gray-700 whitespace-pre-wrap break-words">
{description}
</pre>
- </BorderedContainerWithCaption>
- <BorderedContainerWithCaption caption="サンプルコード">
+ </FoldableBorderedContainerWithCaption>
+ <FoldableBorderedContainerWithCaption caption="サンプルコード">
<CodeBlock code={sampleCode} language="php" />
- </BorderedContainerWithCaption>
- <BorderedContainerWithCaption caption="スコア計算・PHP 環境">
+ </FoldableBorderedContainerWithCaption>
+ <FoldableBorderedContainerWithCaption caption="スコア計算・PHP 環境">
<div className="text-gray-700 flex flex-col gap-2">
<p>
スコアはコード中の全 ASCII
@@ -54,7 +54,7 @@ export default function ProblemColumn({
に設定されています。
</p>
</div>
- </BorderedContainerWithCaption>
+ </FoldableBorderedContainerWithCaption>
</TitledColumn>
);
}