WebArena-ShopSmart / components /content-wrapper.tsx
Jack
Initial release
1067b6f
import { cn } from "@/lib/utils";
import { type PropsWithChildren } from "react";
export const ContentWrapper = ({
children,
className,
}: PropsWithChildren<{ className?: string }>) => {
return (
<div className={cn(`max-w-[1400px] m-auto p-6`, className)}>{children}</div>
);
};