import * as React from 'react' import warning from 'tiny-warning' import { DefaultGlobalNotFound } from './not-found' import type { AnyRoute, AnyRouter } from '@tanstack/router-core' export function renderRouteNotFound( router: AnyRouter, route: AnyRoute, data: any, ) { if (!route.options.notFoundComponent) { if (router.options.defaultNotFoundComponent) { return } if (process.env.NODE_ENV === 'development') { warning( route.options.notFoundComponent, `A notFoundError was encountered on the route with ID "${route.id}", but a notFoundComponent option was not configured, nor was a router level defaultNotFoundComponent configured. Consider configuring at least one of these to avoid TanStack Router's overly generic defaultNotFoundComponent (
Not Found
)`, ) } return } return }