You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

25 lines
562 B

import React from 'react';
import Tree from 'rc-tree';
const AntTree = React.createClass({
getDefaultProps() {
return {
prefixCls: 'ant-tree',
checkable: false,
showIcon: false,
};
},
render() {
const props = this.props;
let checkable = props.checkable;
if (checkable) {
checkable = <span className={`${props.prefixCls}-checkbox-inner`}></span>;
}
return <Tree {...props} checkable={checkable}>
{this.props.children}
</Tree>;
}
});
AntTree.TreeNode = Tree.TreeNode;
export default AntTree;