From 0ab9bdf4ad937913dd3a29dbddf93f09b57deedd Mon Sep 17 00:00:00 2001 From: nsfisis Date: Fri, 21 Mar 2025 00:44:20 +0900 Subject: feat(frontend): make container foldable --- .../FoldableBorderedContainerWithCaption.tsx | 45 ++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 frontend/app/components/FoldableBorderedContainerWithCaption.tsx (limited to 'frontend/app/components/FoldableBorderedContainerWithCaption.tsx') diff --git a/frontend/app/components/FoldableBorderedContainerWithCaption.tsx b/frontend/app/components/FoldableBorderedContainerWithCaption.tsx new file mode 100644 index 0000000..2d21b61 --- /dev/null +++ b/frontend/app/components/FoldableBorderedContainerWithCaption.tsx @@ -0,0 +1,45 @@ +import { faChevronDown, faChevronUp } from "@fortawesome/free-solid-svg-icons"; +import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; +import React, { useState } from "react"; +import BorderedContainer from "./BorderedContainer"; + +type Props = { + caption: string; + children: React.ReactNode; +}; + +export default function FoldableBorderedContainerWithCaption({ + caption, + children, +}: Props) { + const [isOpen, setIsOpen] = useState(true); + + const handleToggle = () => { + setIsOpen((prev) => !prev); + }; + + return ( + +
+
+
+

{caption}

+
+
+ +
+
+
{children}
+
+
+ ); +} -- cgit v1.2.3-70-g09d2