Closed hainguyenh closed 1 year ago
I'm trying to use the attribute rowHeight but only work for fix value. If I input as rowHeight={({ treeData, node, path }) => { console.log(treeData); console.log(node); console.log(path); }}
The object {treeData, node, path} always undefine.
I'm using wrong way
The correct way
rowHeight={( treeData, node, path ) => { console.log(treeData); console.log(node); console.log(path); }}
I'm trying to use the attribute rowHeight but only work for fix value. If I input as rowHeight={({ treeData, node, path }) => { console.log(treeData); console.log(node); console.log(path); }}
The object {treeData, node, path} always undefine.