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

27 lines
362 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 0
title:
zh-CN: 基本
en-US: Basic
2016-03-31 09:40:55 +08:00
---
2015-07-27 20:53:08 +08:00
## zh-CN
2015-07-29 15:22:47 +08:00
最简单的用法,适用于简短的警告提示。
2015-07-27 20:53:08 +08:00
## en-US
The simplest usage for short messages.
2020-01-21 16:21:37 +08:00
```tsx
import { Alert } from 'antd';
2015-07-27 20:53:08 +08:00
2019-05-07 14:57:32 +08:00
ReactDOM.render(<Alert message="Success Text" type="success" />, mountNode);
```
2017-05-23 17:51:10 +08:00
<style>
2019-12-25 21:54:21 +08:00
.code-box-demo .ant-alert {
2017-05-23 17:51:10 +08:00
margin-bottom: 16px;
}
</style>