react-core-architecture
Installation
SKILL.md
react-core-architecture
Quick Reference
Architecture Layers
| Layer | Role | Key Concept |
|---|---|---|
| React Elements | Lightweight descriptions of UI | Immutable objects created by JSX/createElement |
| Components | Functions that return elements | Pure functions of props and state |
| Fiber Tree | Internal work-in-progress tree | Enables incremental rendering and prioritization |
| Reconciler | Diffing algorithm | Compares previous and next element trees |
| Renderer | Platform-specific output | react-dom for web, react-native for mobile |