import React from 'react'; import NavRouter from './NavRouter'; import { WithNavRouterProps } from './types'; const withNavRouter =
(Component: React.ComponentType
): React.FC
=> {
function WithNavRouter({ history, initialEntries, ...rest }: P & WithNavRouterProps) {
return (