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

28 lines
510 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 1
title:
zh-CN: 四种样式
en-US: More types
2016-03-31 09:40:55 +08:00
---
2015-07-27 20:53:08 +08:00
## zh-CN
2016-03-28 14:38:25 +08:00
共有四种样式 `success`、`info`、`warning`、`error`。
2015-07-27 20:53:08 +08:00
## en-US
There are 4 types of Alert: `success`, `info`, `warning`, `error`.
2017-02-13 10:55:53 +08:00
````jsx
import { Alert } from 'antd';
2015-07-27 20:53:08 +08:00
2017-10-09 13:23:20 +08:00
ReactDOM.render(
<div>
<Alert message="Success Text" type="success" />
<Alert message="Info Text" type="info" />
<Alert message="Warning Text" type="warning" />
<Alert message="Error Text" type="error" />
2018-06-27 15:55:04 +08:00
</div>,
mountNode);
2015-07-27 20:53:08 +08:00
````