Check if link is active in React Router
16 March 2022 (Updated 13 April 2022)
Last tested with react-router-dom^6.0.2
.
You want to check if the path for a given <Link>
component matches the current path. Here’s an approach:
The key part here is using the useResolved
and useMatch
hooks.
Now, you can use the component anywhere:
The active
class will be applied to the resulting <a>
if the current path matches /account-details
. I’ve used classnames
in the above example but you can use a regular conditional check to apply any class name you wish.
Sources
Tagged:
React tooling
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment