mirror of
https://github.com/lukevella/rallly.git
synced 2025-05-19 11:56:21 +02:00
⬆️ v3.0.0 (#704)
This commit is contained in:
parent
735056f25f
commit
c22b3abc4d
385 changed files with 19912 additions and 5250 deletions
12
apps/web/src/components/container.tsx
Normal file
12
apps/web/src/components/container.tsx
Normal file
|
@ -0,0 +1,12 @@
|
|||
import { cn } from "@rallly/ui";
|
||||
|
||||
export const Container = ({
|
||||
children,
|
||||
className,
|
||||
}: React.PropsWithChildren<{ className?: string }>) => {
|
||||
return (
|
||||
<div className={cn("mx-auto max-w-7xl px-3 sm:px-8", className)}>
|
||||
{children}
|
||||
</div>
|
||||
);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue