docs: update docs for tree, close: #4932

This commit is contained in:
Benjy Cui 2017-03-02 17:08:57 +08:00
parent 0fd4c92979
commit 64cbb95a34

View File

@ -106,6 +106,7 @@ class Demo extends React.Component {
});
return (
<Tree
className="draggable-tree"
defaultExpandedKeys={this.state.expandedKeys}
draggable
onDragEnter={this.onDragEnter}
@ -119,3 +120,10 @@ class Demo extends React.Component {
ReactDOM.render(<Demo />, mountNode);
````
````css
// You can add the following CSS to your project to make draggable area bigger
#components-tree-demo-draggable .draggable-tree .ant-tree-node-content-wrapper {
width: calc(100% - 18px);
}
````