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