(pathname: string, href: string)
| 26 | } |
| 27 | |
| 28 | function matchPath(pathname: string, href: string) { |
| 29 | if (href === '/components') { |
| 30 | return pathname === '/components' |
| 31 | } |
| 32 | return pathname.startsWith(href) |
| 33 | } |
| 34 | |
| 35 | function NavLink({ |
| 36 | href, |
no outgoing calls
no test coverage detected