From 781c561877042f4dfe449618bb971e8599e909dc Mon Sep 17 00:00:00 2001 From: Jibola Paul Date: Thu, 2 Oct 2025 07:08:29 +0100 Subject: [PATCH] feat: global layout container --- frontend/components/layout/Container.tsx | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 frontend/components/layout/Container.tsx diff --git a/frontend/components/layout/Container.tsx b/frontend/components/layout/Container.tsx new file mode 100644 index 00000000..bab78320 --- /dev/null +++ b/frontend/components/layout/Container.tsx @@ -0,0 +1,20 @@ +import React from "react"; +import { twMerge } from "tailwind-merge"; + +const LayoutContainer = ({ + children, + className, +}: { + children: React.ReactNode; + className?: string; +}) => { + return ( +
+ {children} +
+ ); +}; + +export default LayoutContainer;