const RelationCard = ({ title, description, imageSrc }) => (
{imageSrc && (
{title}
)}

{title}

{description}

); export default RelationCard;