mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 16:39:41 +08:00
6776bb8916
* docs: update demo * chore: add script * test: fix demo test * docs: convert demos * chore: move script * test: remove react-dom import * chore: update deps * docs: update riddle js * test: fix image test * docs: fix riddle demo
44 lines
894 B
Markdown
44 lines
894 B
Markdown
---
|
|
order: 3
|
|
title:
|
|
zh-CN: 含有辅助性文字介绍
|
|
en-US: Description
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
含有辅助性文字介绍的警告提示。
|
|
|
|
## en-US
|
|
|
|
Additional description for alert message.
|
|
|
|
```tsx
|
|
import { Alert } from 'antd';
|
|
|
|
export default () => (
|
|
<>
|
|
<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"
|
|
/>
|
|
</>
|
|
);
|
|
```
|