ant-design/components/radio/index.jsx
ustccjw b34269a6b1 use es6 module import/export
convert var to const

fix bug

fix bug

fix for jshint

fix import
2015-07-24 11:22:49 +08:00

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>
);
}
});