From 028b979e82e7bdc1d757542b12e7a7ac54eb0254 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Thu, 15 Jan 2026 14:28:02 +0000 Subject: [PATCH] Update components/container.tsx --- components/container.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 components/container.tsx diff --git a/components/container.tsx b/components/container.tsx new file mode 100644 index 0000000..866ada8 --- /dev/null +++ b/components/container.tsx @@ -0,0 +1,14 @@ +import { cn } from "@/lib/utils"; +import React from "react"; + +export const Container = ({ + children, + className, +}: { + children: React.ReactNode; + className?: string; +}) => { + return ( +
{children}
+ ); +};