First Commit

This commit is contained in:
2023-04-30 13:52:52 -04:00
commit 7037aa4c3b
48 changed files with 18731 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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;