mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 04:00:13 +08:00
b34269a6b1
convert var to const fix bug fix bug fix for jshint fix import
19 lines
319 B
JavaScript
19 lines
319 B
JavaScript
import Radio from 'rc-radio';
|
|
import React from 'react';
|
|
|
|
export default React.createClass({
|
|
getDefaultProps() {
|
|
return {
|
|
prefixCls: 'ant-radio'
|
|
};
|
|
},
|
|
render() {
|
|
return (
|
|
<label>
|
|
<Radio {...this.props} children={null} />
|
|
{this.props.children}
|
|
</label>
|
|
);
|
|
}
|
|
});
|