Performance: What is JSX
MEDIUM IMPACT
JSX affects the initial JavaScript bundle size and parsing time, impacting page load speed and rendering start.
const element = <div>Hello World</div>;const element = React.createElement('div', null, 'Hello World');
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| JSX syntax | No direct DOM ops at runtime | 0 reflows from JSX itself | No paint cost from JSX | [OK] Good |
| React.createElement calls manually | No direct DOM ops at runtime | 0 reflows | No paint cost | [OK] |