如何使用react-sortable-tree在每个节点上添加工具提示?
这是我的代码。我是SortableTree。
<SortableTree
treeData={treeData1}
generateNodeProps={({ node, path }) => {
buttons: [
<i className="fa fa-trash action-list"
title="Delete" aria-hidden="true"
onClick={() => {
if(window.confirm('Are you sure you want to delete this?')) {
this.state.ondrag = false;
this.state.ondelete = true;
this.deleteTreeNode(productId)
}}}></i>
],
};
}}/>
---------------------------------------------------------------
How to add tooltip here?