react-tree-walker icon indicating copy to clipboard operation
react-tree-walker copied to clipboard

Walk a React (or Preact) element tree, executing a "visitor" function against each element.

Results 12 react-tree-walker issues
Sort by recently updated
recently updated
newest added
trafficstars

Hey @ctrlplusb, thanks for extracting this utility out for other libraries! would you be inclined to pass the current element depth/index in the tree as the last argument to the...

This lets us do stuff that depends on knowing where the node we're visiting is. For example, I noticed `` is invalid but `React.createElement('v:roundrect')` is fine, so wrote some code...