Files
backend/admin-web/src/components/Exception/demo/403.md
2019-02-27 11:06:55 +08:00

438 B

order, title
order title
2
zh-CN en-US
403 页面 403 Page

zh-CN

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

en-US

403 page with custom operations.

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);