import type { RouteMap } from '../types'; interface NotFoundPageProps { attemptedPath: string; routeMap: RouteMap; } export const NotFoundPage = ({ attemptedPath, routeMap, }: NotFoundPageProps) => (