Performance: React components in Astro
MEDIUM IMPACT
This affects page load speed and interaction responsiveness by how React components are loaded and hydrated within Astro pages.
--- import ReactComponent from './Component.jsx'; --- <ReactComponent client:idle />
--- import ReactComponent from './Component.jsx'; --- <ReactComponent client:load />
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| client:load hydration | Multiple DOM updates during hydration | Triggers 1 reflow per component | Moderate paint cost | [X] Bad |
| client:idle hydration | DOM updates deferred until idle | Single reflow after idle | Lower paint cost | [OK] Good |