import {FC} from "react"; type CardProps = { title: string; description: string; } export const Card: FC = ({title, description}) => { return (
{title}

{description}

) }