import React from 'react'; interface CardProps { children: React.ReactNode; className?: string; title?: string | React.ReactNode; } export function Card({ children, className = '', title }: CardProps) { return (
{title &&

{title}

} {children}
); }