mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-14 08:09:13 +08:00
f3d4ccc045
ref #413
20 lines
452 B
Markdown
20 lines
452 B
Markdown
# 四种样式
|
|
|
|
- order: 1
|
|
|
|
共有四种样式`success`、`info`、`warn`、`error`。
|
|
|
|
---
|
|
|
|
````jsx
|
|
import { Alert } from 'antd';
|
|
|
|
ReactDOM.render(<div>
|
|
<Alert message="成功提示的文案" type="success" />
|
|
<Alert message="消息提示的文案" type="info" />
|
|
<Alert message="警告提示的文案" type="warn" />
|
|
<Alert message="错误提示的文案" type="error" />
|
|
</div>,
|
|
document.getElementById('components-alert-demo-style'));
|
|
````
|