mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
15 lines
181 B
Markdown
15 lines
181 B
Markdown
# 基本
|
|
|
|
- order: 0
|
|
|
|
最简单的用法。
|
|
|
|
---
|
|
|
|
````jsx
|
|
var Radio = antd.Radio;
|
|
|
|
React.render(<Radio>Radio</Radio>
|
|
, document.getElementById('components-radio-demo-basic'));
|
|
````
|