arnoldc - Overview
1
function Product ({product: {title, price, description, category, image}}) {
2
return (
3
<div className="flex bg-white w-full mb-5 shadow-sm rounded-lg dark:bg-gray-300">
4
<div className="w-5/12 p-2">
5
<div style={{backgroundImage: `url(${image})`}} className="bg-contain bg-no-repeat bg-center w-full h-full"></div>