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

Properties

basename?: string
children?: ReactNode
future?: Partial<Pick<FutureConfig, "v7_relativeSplatPath">>
location: string | Partial<Location<any>>
navigationType?: NavigationType
navigator: Navigator
static?: boolean