import clsx from "clsx"; interface ContainerProps { children: React.ReactNode; className?: string | undefined; } export function Container({ children, className }: ContainerProps) { return
{children}
; }