Я вам писал в прошлом вопросе как это сделать.
Измените свой роут:
<Route path="/more/:id" component={More}/>
измените ссылку:
<Link to={`more/${this.props.itemId}`} className="descr">подробнее</Link>
измените компонент: 
export default function More(props){
    const { id } = props.match.params;
    const item =props.items[id];
    const { id, title, descr, img, price } = item;
    
    return(
        <div className="more__info">
           ...
        </div>
    );
}
А ссылка для перехода будет не такая:
localhost:3000/more_id1
а, при 
id =  1 такая:
localhost:3000/more/1