React changes are first made in virtualdom, which is a copy of real Dom. But still react has to update the real Dom at some point of time, right? How does react updates the Do...
Is this something that can be solved from client side?
If I add any element in the Dom with plain vanilla js, does the whole Dom gets updated?
If it's slow, and react uses that dom api to update, how it becomes fast?