404.tsx 412 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="Sorry, the page you visited does not exist."
  9. extra={
  10. <Button type="primary" onClick={() => location.href = location.origin}>
  11. Back Home
  12. </Button>
  13. }
  14. />
  15. );
  16. export default NoFoundPage;