interface CardProps { title?: string; children?: React.ReactNode; } const Card: React.FC = ({ title, children }) => { return (
{title &&

{title}

} {children ? children : null}
); }; export default Card;