mirror of
https://github.com/cfngc4594/monaco-editor-lsp-next.git
synced 2025-05-18 23:42:24 +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}
|
||
|
/>
|
||
|
);
|
||
|
}
|