import React from 'react'; const AdCard = ({ ad }) => { return (

{ad.title}

{ad.description}

{ad.title}
); }; export default AdCard;