petits ajustements et début boutton cart
This commit is contained in:
@@ -9,8 +9,8 @@ const ItemList = ({ items }) => {
|
||||
{items.length <= 0 && <p>Aucun morceaux à montrer...</p>}
|
||||
{items.map((item) =>
|
||||
<Link key={item.id} className='item-link' to={`/morceaux/${item.id}`}>
|
||||
<Item
|
||||
productId={item.id}
|
||||
<Item
|
||||
productId={item.id}
|
||||
name={item.title}
|
||||
price={item.price}
|
||||
status={item.status}
|
||||
@@ -19,7 +19,7 @@ const ItemList = ({ items }) => {
|
||||
</Link>
|
||||
)}
|
||||
</div>
|
||||
|
||||
|
||||
</>
|
||||
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user