\n \n If you typed the web address, check it is correct.\n
\n \n If you pasted the web address, check you copied the entire address.\n
\n \n If the web address is correct or you clicked a link or button and ended\n up on this page,{' '}\n \n contact our Explore education statistics team\n {' '}\n if you need any help or support.\n
\n \n );\n};\n\nexport default PageNotFoundPage;\n","import PageErrorBoundary from '@admin/components/PageErrorBoundary';\nimport ProtectedRoute from '@admin/components/ProtectedRoute';\nimport { AuthContextProvider } from '@admin/contexts/AuthContext';\nimport {\n ConfigContextProvider,\n useConfig,\n} from '@admin/contexts/ConfigContext';\nimport ServiceProblemsPage from '@admin/pages/errors/ServiceProblemsPage';\nimport routes, { publicRoutes } from '@admin/routes/routes';\nimport { ConfiguredMsalProvider } from '@admin/contexts/ConfiguredMsalProvider';\nimport {\n ApplicationInsightsContextProvider as BaseApplicationInsightsContextProvider,\n useApplicationInsights,\n} from '@common/contexts/ApplicationInsightsContext';\nimport { NetworkActivityContextProvider } from '@common/contexts/NetworkActivityContext';\nimport composeProviders from '@common/hocs/composeProviders';\nimport useAsyncRetry from '@common/hooks/useAsyncRetry';\nimport {\n QueryClient,\n QueryClientProvider as BaseQueryClientProvider,\n} from '@tanstack/react-query';\nimport React, { lazy, ReactNode, Suspense, useEffect } from 'react';\nimport { Route, Switch, useHistory } from 'react-router';\nimport { BrowserRouter } from 'react-router-dom';\nimport PageNotFoundPage from './pages/errors/PageNotFoundPage';\nimport { LastLocationContextProvider } from './contexts/LastLocationContext';\n\nconst queryClient = new QueryClient();\n\nconst PrototypeIndexPage = lazy(\n () => import('@admin/prototypes/PrototypeIndexPage'),\n);\n\nfunction ApplicationInsightsTracking() {\n const appInsights = useApplicationInsights();\n const history = useHistory();\n\n useEffect(() => {\n if (appInsights) {\n appInsights.trackPageView({\n uri: history.location.pathname,\n });\n\n history.listen(location => {\n appInsights.trackPageView({\n uri: location.pathname,\n });\n });\n }\n\n document.body.classList.add('js-enabled', 'govuk-frontend-supported');\n }, [appInsights, history]);\n\n return null;\n}\n\nfunction PrototypesEntry() {\n const { value: prototypeRoutes = [] } = useAsyncRetry(() =>\n import('./prototypes/prototypeRoutes').then(module => module.default),\n );\n\n return (\n