• wuhao's avatar
    asder · ba58e96a
    wuhao authored
    ba58e96a
404.jsx 390 Bytes
import { history } from '@umijs/max';
import { Button, Result } from 'antd';
import React from 'react';

const NoFoundPage = () => (
  <Result
    status="404"
    title="404"
    subTitle="抱歉, 您访问的页面不存在!"
    extra={
      <Button type="primary" onClick={() => history.push('/welcome')}>
        Back Home
      </Button>
    }
  />
);

export default NoFoundPage;