403.md 380 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
---
order: 2
title: 403
---

403 页面,配合自定义操作。

````jsx
import { Exception } from 'ant-design-pro';
import { Button } from 'antd';

const actions = (
  <div>
    <Button type="primary" size="large">回到首页</Button>
    <Button size="large">查看详情</Button>
  </div>
);
ReactDOM.render(
  <Exception type="403" actions={actions} />
, mountNode);
````