mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 13:47:02 +08:00
b34269a6b1
convert var to const fix bug fix bug fix for jshint fix import
11 lines
225 B
JavaScript
11 lines
225 B
JavaScript
import Checkbox from 'rc-checkbox';
|
|
import React from 'react';
|
|
|
|
export default React.createClass({
|
|
getDefaultProps() {
|
|
return {prefixCls: 'ant-checkbox'};
|
|
}, render() {
|
|
return <Checkbox {...this.props}/>;
|
|
}
|
|
});
|