/**************************************************** * Audit Information Platform Component * 错误提示页面 * 2020-08 * Sunny ****************************************************/ import { PureComponent } from "react"; /** * 错误页面信息显示属性定义 */ export interface ErrorPageProp { message: string; } /** * 错误提示页面 * * 给出一个最简的错误信息提示信息(div) */ declare class ErrorPage extends PureComponent { render(): JSX.Element; } export default ErrorPage;