From 7d387bf868e2470e8010b5f8d1563da56b5a8b3d Mon Sep 17 00:00:00 2001 From: nsfisis Date: Thu, 20 Mar 2025 20:58:39 +0900 Subject: refactor(frontend): TwoColumnLayout/ThreeColumnLayout --- frontend/app/components/TwoColumnLayout.tsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 frontend/app/components/TwoColumnLayout.tsx (limited to 'frontend/app/components/TwoColumnLayout.tsx') diff --git a/frontend/app/components/TwoColumnLayout.tsx b/frontend/app/components/TwoColumnLayout.tsx new file mode 100644 index 0000000..980bf4d --- /dev/null +++ b/frontend/app/components/TwoColumnLayout.tsx @@ -0,0 +1,13 @@ +import React from "react"; + +type Props = { + children: React.ReactNode; +}; + +export default function TwoColumnLayout({ children }: Props) { + return ( +
+ {children} +
+ ); +} -- cgit v1.2.3-70-g09d2