's'
This commit is contained in:
11
components/ui/container.tsx
Normal file
11
components/ui/container.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user