ant-design/components/checkbox/index.jsx

14 lines
240 B
React
Raw Normal View History

import Checkbox from 'rc-checkbox';
import React from 'react';
export default React.createClass({
2015-07-15 16:01:24 +08:00
getDefaultProps() {
2015-08-18 14:03:44 +08:00
return {
prefixCls: 'ant-checkbox'
};
},
render() {
return <Checkbox {...this.props} />;
2015-07-15 16:01:24 +08:00
}
2015-07-15 15:19:24 +08:00
});