React Router adds an active class to NavLinks when you are on the page that they link to. How can I access this property with Styled Components. I need to styled me
active
react-router now has activeStyle props, which can be used to style active link easily:
activeStyle
FAQs
With styled-components:
const LinkElem = styled(NavLink)` font-size: 16px; font-weight: 400; `; ;