DEV Community

Discussion on: Hooks Introduced in React-Router v5.1

Collapse
 
ageofcode profile image
ageofcode

There is a bug at the example for useParams in V5.0
the 4th line:
let id = match.params;
It should be :
let {id} = match.params;

Collapse
 
finallynero profile image
Nero Adaware

thanks for pointing that out