export function Card({ children, className = '' }) {
return
{children}
;
}
export function CardHeader({ children, className = '' }) {
return {children}
;
}
export function CardTitle({ children, className = '' }) {
return {children}
;
}
export function CardContent({ children, className = '' }) {
return {children}
;
}