Performance: Component composition
MEDIUM IMPACT
Component composition affects rendering speed and DOM complexity by how components are nested and reused.
<Parent> <ChildWithContent /> </Parent>
<Parent>
<Child>
<GrandChild />
</Child>
</Parent>| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Deeply nested small components | High number of nodes | Multiple reflows | High paint cost | [X] Bad |
| Shallow, combined components | Fewer nodes | Single reflow | Lower paint cost | [OK] Good |