diff --git a/src/App.jsx b/src/App.jsx index a5e4652..a9b55c5 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -22,7 +22,7 @@ function Header() { ) } -function Product({ name, description, price, imageUrl }) { +function Product({ name, brand, price, imageUrl }) { const [isLiked, setIsLiked] = React.useState(false) const toggleLike = () => { @@ -59,7 +59,7 @@ function Product({ name, description, price, imageUrl }) { -

{description}

+

{brand}

${price}