React Corsair - v0.0.12
    Preparing search index...

    Interface RouteMatch

    The result of matching a route by a location.

    interface RouteMatch {
        params: Record<string, any>;
        route: Route;
    }
    Index

    Properties

    Properties

    params: Record<string, any>

    Parsed params extracted from a pathname and search params.

    route: Route

    A matched route.