import { cn } from '@/lib/utils'; import { PropsWithChildren } from 'react'; type CardContainerProps = { className?: string } & PropsWithChildren; export function CardContainer({ children, className }: CardContainerProps) { return (
{children}
); }