mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-02 06:50:44 +08:00
16 lines
194 B
Markdown
16 lines
194 B
Markdown
# 基本
|
|
|
|
- order: 0
|
|
|
|
最简单的用法。
|
|
|
|
---
|
|
|
|
````jsx
|
|
var Radio = antd.Radio;
|
|
|
|
React.render(<label>
|
|
<Radio /> Radio
|
|
</label>, document.getElementById('components-radio-demo-basic'));
|
|
````
|