mirror of
https://github.com/massbug/judge4c.git
synced 2025-05-17 23:12:23 +00:00
14 lines
256 B
TypeScript
14 lines
256 B
TypeScript
import { cn } from "@/lib/utils";
|
|
|
|
export function Container({
|
|
className,
|
|
...props
|
|
}: React.ComponentPropsWithoutRef<"div">) {
|
|
return (
|
|
<div
|
|
className={cn("mx-auto max-w-7xl px-4 sm:px-6 lg:px-8", className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|