403.md 364 Bytes
Newer Older
1 2 3 4 5 6 7 8
---
order: 2
title: 403
---

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

````jsx
nikogu's avatar
nikogu committed
9
import Exception from 'ant-design-pro/lib/Exception';
10 11 12 13
import { Button } from 'antd';

const actions = (
  <div>
afc163's avatar
afc163 committed
14 15
    <Button type="primary">回到首页</Button>
    <Button>查看详情</Button>
16 17 18 19 20 21
  </div>
);
ReactDOM.render(
  <Exception type="403" actions={actions} />
, mountNode);
````