rasengan
Version:
The modern React Framework
23 lines (22 loc) • 873 B
TypeScript
import { LinkProps } from 'react-router';
import { RasenganPageComponentProps } from '../types.js';
/**
* Error boundary component that will be displayed if an error occurs during a routing
* @returns
*/
export declare function ErrorBoundary(): import("react/jsx-runtime.js").JSX.Element;
/**
* Page component that defines title and description to a page
*/
export declare const RasenganPageComponent: ({ page: Page, data, }: RasenganPageComponentProps) => import("react/jsx-runtime.js").JSX.Element;
/**
* Component that will be displayed when a page is not found
* @returns React.ReactNode
*/
export declare const NotFoundPageComponent: () => import("react/jsx-runtime.js").JSX.Element;
/**
* Custom Link Component
* @param props
* @returns React.ReactNode
*/
export declare const CustomLink: (props: LinkProps) => import("react/jsx-runtime.js").JSX.Element;