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