Performance: Slot basics (default slot)
MEDIUM IMPACT
This affects how components render their children content and impacts initial paint and interaction responsiveness.
<MyComponent> Content </MyComponent>
<MyComponent>
<div>
<p>Content</p>
</div>
</MyComponent>| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Default slot with extra wrappers | More nodes, deeper tree | 2+ reflows | Higher paint cost | [X] Bad |
| Default slot with direct content | Minimal nodes | 1 reflow | Lower paint cost | [OK] Good |