mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-20 12:28:10 +08:00
16 lines
262 B
JavaScript
16 lines
262 B
JavaScript
var Radio = require('rc-radio');
|
|
var React = require('react');
|
|
|
|
var AntRadio = React.createClass({
|
|
getDefaultProps() {
|
|
return {
|
|
prefixCls: 'ant-radio'
|
|
};
|
|
},
|
|
render() {
|
|
return <Radio {...this.props} />;
|
|
}
|
|
});
|
|
|
|
module.exports = AntRadio;
|