UNPKG

@orfeas126/box-ui-elements

Version:
10 lines (9 loc) 303 B
import * as React from 'react'; import { History } from 'history'; type Props = { children: React.ReactNode; history?: History; initialEntries?: History.LocationDescriptor[]; }; declare const NavRouter: ({ children, history, ...rest }: Props) => React.JSX.Element; export default NavRouter;