UNPKG

jamis

Version:

一种支持通过JSON配置方式生成页面的组件库

16 lines (15 loc) 394 B
/** * @file 404 * @author fex */ import type { PropsWithChildren } from 'react'; import React from 'react'; export interface NotFoundProps extends PropsWithChildren { code?: string | number; description?: string; links?: React.ReactNode; footerText?: React.ReactNode; } export declare class NotFound extends React.Component<NotFoundProps, any> { render(): JSX.Element; }