The result of matching a route by a location.

interface RouteMatch {
    params: Dict;
    route: Route<any, any, any, any>;
}

Properties

Properties

params: Dict

Parsed params extracted from a pathname and search params.

route: Route<any, any, any, any>

A matched route.