403.jsx 388 Bytes
Newer Older
wuhao's avatar
wuhao committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
import { history } from '@umijs/max';
import { Button, Result } from 'antd';
import React from 'react';

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

export default NoFoundPage;