React router V4.2 does not get the visited style
const activeLink = {
"color": "red"
}
<Link to="/" activeStyle={activeLink}>
All categories
</Link>
I have tried with to, but no success
React router V4.2 does not get the visited style
const activeLink = {
"color": "red"
}
<Link to="/" activeStyle={activeLink}>
All categories
</Link>
I have tried with to, but no success
Seems that Link doesn't support this property.
You may want to try NavLink:
React Router Documentation: A special version of the that will add styling attributes to the rendered element when it matches the current URL
For more info: https://reacttraining.com/react-router/web/api/NavLink