);\n\n const matches = currentPathname.match(matcher);\n\n \u002F\u002F The route doesn't match\n \u002F\u002F Let's end this\n if (!matches) {\n return null;\n }\n\n \u002F\u002F First value is the corresponding value: currentPathname\n const matchValues = matches.slice(1);\n\n return pathParams.reduce(\n (acc, paramName, index) =\u003E {\n acc.params[paramName] = matchValues[index];\n return acc;\n },\n {\n params: {},\n element: route.element,\n \u002F\u002F We want the real path\n \u002F\u002F and not the one with path variables (ex :name)\n path: matches[0]\n }\n );\n}\n\nconst RouteContext = React.createContext({ params: {}, path: \"\" });\n\nexport const useRouteContext = () =\u003E useContext(RouteContext);\n\nexport const useParams = () =\u003E useRouteContext().params;\n\nexport default function Routes({ children }) {\n \u002F\u002F Get the current pathname\n const { pathname: currentPathname } = useLocation();\n \u002F\u002F Construct an Array of object corresponding to available Route elements\n const routeElements = buildRouteElementsFromChildren(children);\n\n \u002F\u002F We want to normalize the pahts\n \u002F\u002F They need to start by a \"\u002F\"\"\n normalizePathOfRouteElements(routeElements);\n\n \u002F\u002F A Routes component can only have one matching Route\n const matchingRoute = findFirstMatchingRoute(routeElements, currentPathname);\n\n \u002F\u002F No matching, let's show nothing\n if (!matchingRoute) {\n return null;\n }\n\n const { params, element, path } = matchingRoute;\n\n return (\n \u003CRouteContext.Provider\n value={{\n params,\n path\n }}\n \u003E\n {element}\n \u003C\u002FRouteContext.Provider\u003E\n );\n}\n","id":"7188b4f4-3b19-4b25-9862-3b9e5a4e9fe7","is_binary":false,"title":"Routes.js","sha":null,"inserted_at":"2021-08-16T16:13:14","updated_at":"2021-08-28T08:53:40","upload_id":null,"shortid":"7zjnQ","source_id":"32e47f50-ac83-4e57-a1d1-3c7dc68e8fd5","directory_shortid":"B6Bkn"}],"v2":false,"forked_template_sandbox":{"alias":"react-new","id":"new","title":"React","template":"create-react-app","inserted_at":"2017-04-01T14:30:32","updated_at":"2024-03-18T09:13:49","git":null,"privacy":0,"custom_template":{"id":"40a43fae-72d3-4d3b-8b53-6c795fdd1be3","title":"React","color":"#61DAFB","v2":false,"url":null,"published":false,"icon_url":"ReactIcon","official":false}},"preview_secret":null,"tags":[],"external_resources":[],"privacy":0,"fork_count":10,"template":"create-react-app","owned":false,"collection":false,"free_plan_editing_restricted":false,"forked_from_sandbox":{"alias":"react-router-article-part-1-07zkb","id":"07zkb","title":"react-router article: part 1","template":"create-react-app","inserted_at":"2021-08-09T18:39:24","updated_at":"2021-09-15T18:51:38","git":null,"privacy":0,"custom_template":null},"git":null,"updated_at":"2021-08-28T08:54:42","screenshot_url":"https:\u002F\u002Fscreenshots.codesandbox.io\u002Fwzeog\u002F46.png","inserted_at":"2021-08-16T16:13:14","npm_registries":[],"entry":"src\u002Findex.js","original_git":null,"room_id":null,"description":null,"draft":true};