Question, does anybody know if the ReactJS concept...
# compose
c
Question, does anybody know if the ReactJS concept of “reconciliation” is equivalent to the Compose concept of “recomposition”? I work on both Compose and ReactJS projects and see similarities, but I don’t have deep understanding of either. https://reactjs.org/docs/reconciliation.html
s
Reconciliation is closer to "skipping", as in Compose the tree is a side effect, not the result of a function. So instead of re-rendering all subtree and diffing it, Compose can just skip execution if the parameters are the aame
c
Thanks @shikasd. Time for me to read this I think https://jorgecastillo.dev/book/