import Item from './Item'; import { Link } from 'react-router-dom'; const ItemList = ({ items }) => { return ( <>
{items.length <= 0 &&

Aucun morceaux à montrer...

} {items.map((item) => )}
) } export default ItemList;