ant-design/components/checkbox/index.jsx

11 lines
225 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() {
return {prefixCls: 'ant-checkbox'};
}, render() {
return <Checkbox {...this.props}/>;
}
2015-07-15 15:19:24 +08:00
});