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