UNPKG

@tanstack/solid-router

Version:

Modern and scalable routing for Solid applications

9 lines (8 loc) 369 B
import type * as Solid from 'solid-js'; import type { NotFoundError } from '@tanstack/router-core'; export declare function CatchNotFound(props: { fallback?: (error: NotFoundError) => Solid.JSX.Element; onCatch?: (error: Error) => void; children: Solid.JSX.Element; }): Solid.JSX.Element; export declare function DefaultGlobalNotFound(): Solid.JSX.Element;