useMatch
declare function useMatch<
ParamKey extends ParamParseKey<Path>,
Path extends string
>(
pattern: PathPattern<Path> | Path
): PathMatch<ParamKey> | null;
Returns match data about a route at the given path relative to the current location.
See matchPath
for more information.