mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 16:56:22 +02:00
12 lines
246 B
TypeScript
12 lines
246 B
TypeScript
|
|
import { cn } from "@/lib/utils";
|
||
|
|
|
||
|
|
export function Container({
|
||
|
|
className,
|
||
|
|
children,
|
||
|
|
}: {
|
||
|
|
className?: string;
|
||
|
|
children: React.ReactNode;
|
||
|
|
}) {
|
||
|
|
return <div className={cn("mx-auto max-w-7xl px-4 sm:px-6 lg:px-8", className)}>{children}</div>;
|
||
|
|
}
|