Sign in

田强 / qx-apaas-runtime · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Network
  • qx-apaas-runtime
  • src
  • components
  • exception
  • view
  • index.tsx
  • init
    0cc560e7
    qiang.tian authored
    2022-11-22 15:41:00 +0800  
    Browse Files »
index.tsx 449 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
import { Link } from 'umi';
import { Result, Button } from 'antd';
import { HomeOutlined } from '@ant-design/icons';

export default () => (
  <Result
    status="500"
    title=""
    style={{
      background: 'none',
    }}
    subTitle="应用无权限或者已删除"
    extra={
      <>
        <Link to="/">
          <Button>
            <HomeOutlined />
            返回首页
          </Button>
        </Link>
      </>
    }
  />
);