mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-27 04:36:19 +08:00
14 lines
219 B
Markdown
14 lines
219 B
Markdown
---
|
|
order: 0
|
|
title: 基本
|
|
---
|
|
|
|
最简单的用法,适用于简短的警告提示。
|
|
|
|
````jsx
|
|
import { Alert } from 'antd';
|
|
|
|
ReactDOM.render(<Alert message="成功提示的文案" type="success" />
|
|
, mountNode);
|
|
````
|