UNPKG

active-link-nextjs

Version:

React hook to use with nextjs router to auto apply active class on active link

11 lines (10 loc) 279 B
interface ActiveRouterConfig { activeClass: string; } export declare const useActiveRouter: (config?: ActiveRouterConfig) => { registerRoute: (path: string[], configOverride?: ActiveRouterConfig) => { href: string; className: string; }; }; export {};