I am mapping multiple NavLink and only the first one gets bold when clicked on, how come ?
categories.map((c,i) => (
<NavLink
key={i}
exact
activeClassName="is-active"
to={`/series/category/${c}`}
>
{c}
</NavLink>
))