mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 14:29:33 +08:00
21 lines
273 B
Markdown
21 lines
273 B
Markdown
# 基本
|
|
|
|
- order: 0
|
|
|
|
最简单的用法。
|
|
|
|
---
|
|
|
|
````jsx
|
|
var Alert = require('antd/lib/alert');
|
|
|
|
React.render(
|
|
<div>
|
|
<Alert
|
|
description="警告提示的文案"
|
|
type="success"
|
|
/>
|
|
</div>,
|
|
document.getElementById('components-alert-demo-basic'));
|
|
````
|