403.md 438 Bytes
Newer Older
xiaohuoni's avatar
xiaohuoni committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
---
order: 2
title:
  zh-CN: 403 页面
  en-US: 403 Page
---

## zh-CN

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

## en-US

403 page with custom operations.

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

const actions = (
  <div>
    <Button type="primary">Home</Button>
    <Button>Detail</Button>
  </div>
);
ReactDOM.render(
  <Exception type="403" actions={actions} />
, mountNode);
````