mirror of
https://github.com/lukevella/rallly.git
synced 2025-05-18 19:36:22 +02:00
10 lines
241 B
TypeScript
10 lines
241 B
TypeScript
import { cn } from "@rallly/ui";
|
|
|
|
export const Container = ({
|
|
children,
|
|
className,
|
|
}: React.PropsWithChildren<{ className?: string }>) => {
|
|
return (
|
|
<div className={cn("mx-auto max-w-7xl px-4", className)}>{children}</div>
|
|
);
|
|
};
|