ant-design/components/radio/demo/basic.md

16 lines
193 B
Markdown
Raw Normal View History

2015-07-16 18:23:25 +08:00
# 基本
- order: 0
最简单的用法。
---
````jsx
var Radio = antd.Radio;
2015-07-16 22:40:49 +08:00
React.render(<label>
2015-07-17 11:06:38 +08:00
<Radio />Radio
2015-07-16 22:40:49 +08:00
</label>, document.getElementById('components-radio-demo-basic'));
2015-07-16 18:23:25 +08:00
````