File size: 292 Bytes
1067b6f | 1 2 3 4 5 6 7 8 9 10 11 12 | 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>
);
};
|