2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 0
|
2016-07-04 10:49:26 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 基本
|
|
|
|
en-US: Basic
|
2016-03-31 09:40:55 +08:00
|
|
|
---
|
2015-07-27 20:53:08 +08:00
|
|
|
|
2016-07-04 10:49:26 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2015-07-29 15:22:47 +08:00
|
|
|
最简单的用法,适用于简短的警告提示。
|
2015-07-27 20:53:08 +08:00
|
|
|
|
2016-07-04 10:49:26 +08:00
|
|
|
## en-US
|
|
|
|
|
|
|
|
The simplest usage for short messages.
|
|
|
|
|
2017-02-13 10:55:53 +08:00
|
|
|
````jsx
|
2015-10-28 20:55:49 +08:00
|
|
|
import { Alert } from 'antd';
|
2015-07-27 20:53:08 +08:00
|
|
|
|
2016-07-04 10:49:26 +08:00
|
|
|
ReactDOM.render(
|
|
|
|
<Alert message="Success Text" type="success" />
|
2015-12-29 12:08:58 +08:00
|
|
|
, mountNode);
|
2015-07-27 20:53:08 +08:00
|
|
|
````
|
2017-05-23 17:51:10 +08:00
|
|
|
|
|
|
|
<style>
|
|
|
|
.ant-alert {
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
</style>
|