UNPKG

@dr.pogodin/react-utils

Version:

Collection of generic ReactJS components and utils

6 lines (5 loc) 268 B
import { type NavLinkProps } from 'react-router'; import { type PropsT as GenericLinkPropsT } from './GenericLink'; type PropsT = Omit<GenericLinkPropsT, 'routerLinkType'> & NavLinkProps; declare const NavLink: React.FunctionComponent<PropsT>; export default NavLink;