import { cn } from '@repo/ui/lib/utils'; import { type PropsWithChildren } from 'react'; export function Container({ children, className, }: Readonly & { readonly className?: string }) { return
{children}
; }