ant-design/components/alert/demo/description.md

44 lines
908 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 3
title:
zh-CN: 含有辅助性文字介绍
en-US: Description
2016-03-31 09:40:55 +08:00
---
2015-07-29 17:22:36 +08:00
## zh-CN
2015-07-29 17:22:36 +08:00
含有辅助性文字介绍的警告提示。
## en-US
Additional description for alert message.
2017-02-13 10:55:53 +08:00
````jsx
import { Alert } from 'antd';
2015-07-29 17:22:36 +08:00
2017-10-09 13:23:20 +08:00
ReactDOM.render(
<div>
<Alert
message="Success Text"
description="Success Description Success Description Success Description"
type="success"
/>
<Alert
message="Info Text"
description="Info Description Info Description Info Description Info Description"
type="info"
/>
<Alert
message="Warning Text"
description="Warning Description Warning Description Warning Description Warning Description"
type="warning"
/>
<Alert
message="Error Text"
description="Error Description Error Description Error Description Error Description"
type="error"
/>
2018-06-27 15:55:04 +08:00
</div>,
mountNode);
2015-07-29 17:22:36 +08:00
````