---
order: 2
title:
  zh-CN: 403
  en-US: 403
---

## zh-CN

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

## en-US

403 page with custom operations.

````jsx
import { Exception } from 'mhc-antd-admin';
import { Button } from 'antd';

const actions = (
  <div>
    <Button type="primary" style={{marginRight: 16}}>Home</Button>
    <Button>Detail</Button>
  </div>
);

ReactDOM.render(
  <Exception type="403" actions={actions} />
, mountNode);
````