404.tsx 387 B

123456789101112131415161718
  1. import { Button, Result } from 'antd';
  2. import React from 'react';
  3. import { history } from 'umi';
  4. const NoFoundPage: React.FC = () => (
  5. <Result
  6. status="404"
  7. title="404"
  8. subTitle="抱歉,您访问的页面不存在"
  9. extra={
  10. <Button type="primary" onClick={() => history.push('/')}>
  11. 返回首页
  12. </Button>
  13. }
  14. />
  15. );
  16. export default NoFoundPage;