hello i'm new to react and react router i have exercice page contain multiple exercices so when i click an exrcice i can get individual exercice
<Link to={`exercice/${item.id}`} exact path={`exercice/${item.id}`} className={MenuCard.menu}>
with path like this
http://localhost:3000/exercice/0002
and i have pricing page wich contain exerice component so when i click an exercice from pricing page i get
http://localhost:3000/pricing/exercice/0002
wich goes to nothing how i can get
http://localhost:3000/exercice/0002 thank you