6 ms·
Virtual DOM is not inherently an issue. Many libraries use it and are much faster than React. The main issue is React forces you to tell it which components to
by simplify 2y ago
Virtual DOM is not inherently an issue. Many libraries use it and are much faster than React.
The main issue is React forces you to tell it which components to re-render. This causes a bloat of ceremony that makes it endlessly annoying (in comparison to global redraws) to write in.
- lyu07282 2y ago> React forces you to tell it which components to re-render That's a really weird statement, do you keep your application state in a mutable data structure instead of immutable? Do you know what a pure component is?
- the_gipsy 2y agoSo you don't use hooks at all? The one great unification of state management that comes included?