interface CardProps { children: React.ReactNode className?: string } export function Card({ children, className = '' }: CardProps) { return (
{children}
) } export function CardHeader({ children, className = '' }: CardProps) { return (
{children}
) } export function CardBody({ children, className = '' }: CardProps) { return (
{children}
) }