Hacker News new | ask | show | jobs
by pygy_ 2696 days ago
React provides an immediate mode API (virtual DOM, which is recreated from scratch on every render) implemented on top of a retained mode API (the actual DOM which is stateful).

Diffing and piecemeal updates are an implementation detail/optimization.

1 comments

Diffing results in different behavior if components have internal state.