Files

9 lines
252 B
TypeScript
Raw Permalink Normal View History

2026-03-28 17:35:28 +01:00
import { cn } from '@/lib/utils';
import React from "react";
export function Container({ className, ...props }: React.ComponentProps<'div'>) {
return (
<div className={cn('w-full max-w-7xl mx-auto px-4', className)} {...props} />
);
}