When react commit phase completes, Fiber tree(tree-1) will be replaced with work in progress tree (tree-2 'which has latest updates'), then DOM will be updated, So here my question is:
After Fiber Tree is replaced with WIP(work in progress) tree, old Fiber tree will now become new WIP tree right ? So, WIP and new Fiber Tree are different now and so Fiber tree is not up-to-date with latest updates, So will it be updated with nodes in new Fiber tree or it will skip them ?
Or it will totally destroy old Fiber tree and creates new WIP progress tree ? What happens ?