You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
456 B
456 B
| order | title |
|---|---|
| 0 | [{zh-CN 基础} {en-US Basic}] |
Simplest of usage.
import RenderAuthorized from 'ant-design-pro/lib/Authorized';
import { Alert } from 'antd';
const Authorized = RenderAuthorized('user');
const noMatch = <Alert message="No permission." type="error" showIcon />
ReactDOM.render(
<Authorized authority='admin' noMatch={noMatch}>
<Alert message="Passed!" type="success" showIcon />
</Authorized>
, mountNode);