/next-active-link

Primary LanguageTypeScriptMIT LicenseMIT

Usage

export const SampleLink = ({ href, ...props }) => {
  return (
    <NavLink href={href} activeClassName="active">
      Home
    </NavLink>
  );
};