Files
gitlab-instance-0a899031_na…/components/ui/container.tsx
2025-11-13 05:05:53 +08:00

11 lines
231 B
TypeScript

interface ContainerProps {
children: React.ReactNode
}
export function Container({ children }: ContainerProps) {
return (
<div className="mx-auto w-full max-w-screen-2xl px-2.5 md:px-20">
{children}
</div>
)
}