Learning React - Ep.1
This is the 1st post in my attempt to document my journey of learning React in depth. These posts will focus less on syntax and code snippets and more on conceptual understanding and intuition.
- React is about constructing a component tree determining UI appearance.
- React processes components into React element tree, not directly DOM nodes.
- State changes trigger React re-render and DOM updates.