123456789101112131415161718192021 |
- /*
- * @Author: your name
- * @Date: 2021-11-09 14:23:12
- * @LastEditTime: 2021-11-09 14:36:13
- * @LastEditors: your name
- * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
- * @FilePath: /KC-MiddlePlatform/src/pages/404.tsx
- */
- import { Result } from 'antd';
- import React from 'react';
- const NoFoundPage: React.FC = () => (
- <Result
- status="404"
- title="404"
- subTitle="抱歉,你权限访问该页面或该页面不存在!"
- />
- );
- export default NoFoundPage;
|