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

26 lines
499 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-01-19 15:19:03 +08:00
````__react
import { Alert } from 'antd';
2015-07-27 20:53:08 +08:00
2015-10-20 16:47:55 +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" />
2016-03-28 14:38:25 +08:00
</div>, mountNode);
2015-07-27 20:53:08 +08:00
````