mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-05 05:28:20 +08:00
20 lines
407 B
Markdown
20 lines
407 B
Markdown
# 四种样式
|
|
|
|
- order: 1
|
|
|
|
共有四种样式`success`、`info`、`warn`、`error`。
|
|
|
|
---
|
|
|
|
````jsx
|
|
import { Alert } from 'antd';
|
|
|
|
ReactDOM.render(<div>
|
|
<Alert message="成功提示的文案" type="success" />
|
|
<Alert message="消息提示的文案" type="info" />
|
|
<Alert message="警告提示的文案" type="warn" />
|
|
<Alert message="错误提示的文案" type="error" />
|
|
</div>,
|
|
mountNode);
|
|
````
|