jamis
Version:
一种支持通过JSON配置方式生成页面的组件库
17 lines (16 loc) • 500 B
TypeScript
/**
* @file 404
* @author fex
*/
import type { PickClassStyleType, ReactPropsBase } from 'jamis-core';
import type { PropsWithChildren } from 'react';
import React from 'react';
export interface NotFoundProps extends PropsWithChildren, ReactPropsBase, PickClassStyleType {
code?: string | number;
description?: string;
links?: React.ReactNode;
footerText?: React.ReactNode;
}
export declare class NotFound extends React.Component<NotFoundProps, any> {
render(): JSX.Element;
}