|
|
|
|
|
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. |
|