mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 17:09:46 +08:00
29 lines
1.1 KiB
Markdown
29 lines
1.1 KiB
Markdown
# 含有辅助性文字介绍
|
|
|
|
- order: 2
|
|
|
|
含有辅助性文字介绍的警告提示。
|
|
|
|
---
|
|
|
|
````jsx
|
|
var Alert = antd.Alert;
|
|
|
|
React.render(<div>
|
|
<Alert message="成功提示的文案"
|
|
description="成功提示的辅助性文字介绍成功提示的辅助性文字介绍成功提示的辅助性文字介绍成功提示的辅助性文字介绍"
|
|
type="success" />
|
|
<Alert message="消息提示的文案"
|
|
description="消息提示的辅助性文字介绍消息提示的辅助性文字介绍消息提示的辅助性文字介绍"
|
|
type="info" />
|
|
<Alert
|
|
message="警告提示的文案"
|
|
description="警告提示的辅助性文字介绍警告提示的辅助性文字介绍"
|
|
type="warn" />
|
|
<Alert
|
|
message="错误提示的文案"
|
|
description="错误提示的辅助性文字介绍错误提示的辅助性文字介绍错误提示的辅助性文字介绍错误提示的辅助性文字介绍错误提示的辅助性文字介绍错误提示的辅助性文字介绍"
|
|
type="error" />
|
|
</div>, document.getElementById('components-alert-demo-description'));
|
|
````
|