ant-design/components/radio/demo/basic.md
afc163 753c01ae18 ES6 syntax for demo code
fix antd.notification
2015-10-28 20:55:49 +08:00

15 lines
190 B
Markdown

# 基本
- order: 0
最简单的用法。
---
````jsx
import { Radio } from 'antd';
ReactDOM.render(<Radio>Radio</Radio>
, document.getElementById('components-radio-demo-basic'));
````