Files
chadsreactproject/src/components/ShopItem.js
Dev EhChad 1527b5c20a Add files via upload
Third  Commit
2023-05-01 08:52:34 -04:00

13 lines
281 B
JavaScript

import React from "react";
function ShopItem({ image, name, price }) {
return (
<div className="shopItem">
<div style={{ backgroundImage: `url(${image})` }}> </div>
<h1> {name} </h1>
<p> ${price} </p>
</div>
);
}
export default ShopItem;