React Router class tools
    Preparing search index...

    Interface RouteComponentProps<Params, Context, Query>

    interface RouteComponentProps<
        Params extends Partial<Record<keyof Params, string>> = {},
        Context extends StaticContext = StaticContext,
        Query extends Record<string, any> = {},
    > {
        location?: Location;
        match?: match<Params>;
        query?: Query;
        staticContext?: Context;
    }

    Type Parameters

    Index

    Properties

    location?: Location
    match?: match<Params>
    query?: Query
    staticContext?: Context