404.tsx 557 B

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