Я бы хотел, чтобы компонент Link Fabri c отображался как NavLink React Router. Я пытался следовать Office Fabri c документам о настройке as={NavLink}
примерно так:
<Link
as={NavLink}
to={href}
activeStyle={activeStyle}
exact={exact}
onClick={handleClicked}
title={title}
className={className}
activeClassName={activeClassName}
>
{children}
</Link>
Однако я получаю следующую ошибку типа:
Type 'typeof NavLink' is not assignable to type 'string | ComponentClass<{}, any> | StatelessComponent<{}> | undefined'.
Type 'typeof NavLink' is not assignable to type 'ComponentClass<{}, any>'.
Types of parameters 'props' and 'props' are incompatible.
Property 'to' is missing in type '{}' but required in type 'Readonly<NavLinkProps<any>>'.
Мой вопрос: как мне разрешить ошибку типа?