ldd
ldd
I think it *may* be possible, by overriding how links are drawn. Here's an example: https://github.com/ldd/react-tech-tree/blob/master/example/src/trees/superhero/linkHelper.js If you have an online example, let me know. I can try to take...
yup you are right ```diff declare function Node(props: T): JSX.Element; - declare function Tree(props: T): JSX.Element; + declare function Tree(props: T): JSX.Element; ``` in the distributed `index.d.ts`, right? tbh, now...
I can confirm that links do not change when nodes change dynamically. I think it was a compromise I made for performance reasons, but I can take another look. Thanks...