blob: 0263687e4375b2a8143e6a4a2cbd04de6e71b544 [file] [log] [blame]
86133aaa3f5d2025-04-20 21:33:29 +08001import { history } from '@umijs/max';
2import { Button, Result } from 'antd';
3import React from 'react';
4
5const NoFoundPage: React.FC = () => (
6 <Result
7 status="404"
8 title="404"
9 subTitle="Sorry, the page you visited does not exist."
10 extra={
11 <Button type="primary" onClick={() => history.push('/')}>
12 Back Home
13 </Button>
14 }
15 />
16);
17
18export default NoFoundPage;