File size: 393 Bytes
aeb6dbc
 
 
 
 
 
 
 
60788d3
aeb6dbc
 
60788d3
aeb6dbc
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { Button, Result } from 'antd';
import { history } from 'umi';

const NoFoundPage = () => {
  return (
    <Result
      status="404"
      title="404"
      subTitle="Page not found, please enter a correct address."
      extra={
        <Button type="primary" onClick={() => history.push('/')}>
          Business
        </Button>
      }
    />
  );
};

export default NoFoundPage;