2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 3
|
2016-07-04 10:49:26 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 含有辅助性文字介绍
|
|
|
|
en-US: Description
|
2016-03-31 09:40:55 +08:00
|
|
|
---
|
2015-07-29 17:22:36 +08:00
|
|
|
|
2016-07-04 10:49:26 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2015-07-29 17:22:36 +08:00
|
|
|
含有辅助性文字介绍的警告提示。
|
|
|
|
|
2016-07-04 10:49:26 +08:00
|
|
|
## en-US
|
|
|
|
|
|
|
|
Additional description for alert message.
|
|
|
|
|
2020-01-21 16:21:37 +08:00
|
|
|
```tsx
|
2015-10-28 20:55:49 +08:00
|
|
|
import { Alert } from 'antd';
|
2015-07-29 17:22:36 +08:00
|
|
|
|
2017-10-09 13:23:20 +08:00
|
|
|
ReactDOM.render(
|
2020-05-09 19:32:02 +08:00
|
|
|
<>
|
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"
|
|
|
|
/>
|
2020-05-09 19:32:02 +08:00
|
|
|
</>,
|
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
|
|
|
```
|