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