function ListingCard({listings}) {
return (
<div className="listing-container">
<div className="listing-card">
<img src={listings.image} />
<a href="#"><p>{listings.title}</p></a>
<div className="description">
<p>{listings.category}</p>
</div>
<div>
<p>{listings.price}€</p>
</div>
</div>
</div>
)
}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter