interface RouterProps {
    basename?: string;
    children?: ReactNode;
    location: string | Partial<Location<any>>;
    navigationType?: NavigationType;
    navigator: Navigator;
    static?: boolean;
}

Properties

basename?: string
children?: ReactNode
location: string | Partial<Location<any>>
navigationType?: NavigationType
navigator: Navigator
static?: boolean