index.tsx
449 Bytes
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>
</>
}
/>
);