import type { RouteMap } from '../types'; interface NotFoundPageProps { attemptedPath: string; routeMap: RouteMap; } export const NotFoundPage = ({ attemptedPath, routeMap, }: NotFoundPageProps) => (
Unable to locate configuration for {attemptedPath}.
The available routes in your application are:
| Route | Defined in |
|---|---|
| {route} | {pageData.pageName} |
If you did mean to access {attemptedPath}, you may need to add it to a{' '} page file.
This page won’t appear in production builds.