import React, { ReactElement } from 'react'; type CardProps = { title: string; children: ReactElement; }; const Card: React.FC = ({ title, children }) => { return (

{title}


{children}
); }; export default Card;