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

45 lines
902 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.
2020-01-21 16:21:37 +08:00
```tsx
import { Alert } from 'antd';
2015-07-29 17:22:36 +08:00
2017-10-09 13:23:20 +08:00
ReactDOM.render(
<>
2017-10-09 13:23:20 +08:00
<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"
/>
</>,
2019-05-07 14:57:32 +08:00
mountNode,
2018-11-28 15:00:03 +08:00
);
2019-05-07 14:57:32 +08:00
```