React Component Performance
Overview
Identify render hotspots, isolate expensive updates, and apply targeted optimizations without changing UI behavior.
When to Use
- When the user asks to profile or improve a slow React component.
- When you need to reduce re-renders, list lag, or expensive render work in React UI.
Workflow
- Reproduce or describe the slowdown.
- Identify what triggers re-renders (state updates, props churn, effects).
- Isolate fast-changing state from heavy subtrees.
- Stabilize props and handlers; memoize where it pays off.
- Reduce expensive work (computation, DOM size, list length).
- Validate: open React DevTools Profiler → record the interaction → inspect the Flamegraph for components rendering longer than ~16 ms → compare against a pre-optimization baseline recording.
Checklist
- Measure: use React DevTools Profiler or log renders; capture baseline.
- Find churn: identify state updated on a timer, scroll, input, or animation.
- Split: move ticking state into a child; keep heavy lists static.
- Memoize: wrap leaf rows with
memo only when props are stable.
- Stabilize props: use
useCallback/useMemo for handlers and derived values.
- Avoid derived work in render: precompute, or compute inside memoized helpers.
- Control list size: window/virtualize long lists; avoid rendering hidden items.
- Keys: ensure stable keys; avoid index when order can change.
- Effects: verify dependency arrays; avoid effects that re-run on every render.
- Style/layout: watch for expensive layout thrash or large Markdown/diff renders.
Optimization Patterns
Isolate ticking state
Move a timer or animation counter into a child so the parent list never re-renders on each tick.
// ❌ Before – entire parent (and list) re-renders every second
function Dashboard({ items }: { items: Item[] }) {
const [tick, setTick] = useState(0);
useEffect(() => {
const id = setInterval(() => setTick(t => t + 1), 1000);
return () => clearInterval(id);
}, []);
return (
<>
<Clock tick={tick} />
<ExpensiveList items={items} /> {/* re-renders every second */}
</>
);
}
// ✅ After – only <Clock> re-renders; list is untouched
function Clock() {
const [tick, setTick] = useState(0);
useEffect(() => {
const id = setInterval(() => setTick(t => t + 1), 1000);
return () => clearInterval(id);
}, []);
return <span>{tick}s</span>;
}
function Dashboard({ items }: { items: Item[] }) {
return (
<>
<Clock />
<ExpensiveList items={items} />
</>
);
}
Stabilize callbacks with useCallback + memo
// ❌ Before – new handler reference on every render busts Row memo
function List({ items }: { items: Item[] }) {
const handleClick = (id: string) => console.log(id); // new ref each render
return items.map(item => <Row key={item.id} item={item} />);
}
// ✅ After – stable handler; Row only re-renders when its own item changes
const Row = memo(({ item, onClick }: RowProps) => (
<li => onClick(item.id)}>{item.name}</li>
));
function List({ items }: { items: Item[] }) {
const handleClick = useCallback((id: string) => console.log(id), []);
return items.map(item => <Row key={item.id} item={item} />);
}
Prefer derived data outside render
// ❌ Before – recomputes on every render
function Summary({ orders }: { orders: Order[] }) {
const total = orders.reduce((sum, o) => sum + o.amount, 0); // runs every render
return <p>Total: {total}</p>;
}
// ✅ After – recomputes only when orders changes
function Summary({ orders }: { orders: Order[] }) {
const total = useMemo(() => orders.reduce((sum, o) => sum + o.amount, 0), [orders]);
return <p>Total: {total}</p>;
}
Additional patterns
- Split rows: extract list rows into memoized components with narrow props.
- Defer heavy rendering: lazy-render or collapse expensive content until expanded.
Profiling Validation Steps
- Open React DevTools → Profiler tab.
- Click Record, perform the slow interaction, then Stop.
- Switch to Flamegraph view; any bar labeled with a component and time > ~16 ms is a candidate.
- Use Ranked chart to sort by self render time and target the top offenders.
- Apply one optimization at a time, re-record, and compare render counts and durations against the baseline.
Example Reference
Load references/examples.md when the user wants a concrete refactor example.
Limitations
- Use this skill only when the task clearly matches the scope described above.
- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
1---2name: react-component-performance3description: Diagnose slow React components and suggest targeted performance fixes.4license: MIT5---67# React Component Performance89## Overview1011Identify render hotspots, isolate expensive updates, and apply targeted optimizations without changing UI behavior.1213## When to Use14- When the user asks to profile or improve a slow React component.15- When you need to reduce re-renders, list lag, or expensive render work in React UI.1617## Workflow18191. Reproduce or describe the slowdown.202. Identify what triggers re-renders (state updates, props churn, effects).213. Isolate fast-changing state from heavy subtrees.224. Stabilize props and handlers; memoize where it pays off.235. Reduce expensive work (computation, DOM size, list length).246. **Validate**: open React DevTools Profiler → record the interaction → inspect the Flamegraph for components rendering longer than ~16 ms → compare against a pre-optimization baseline recording.2526## Checklist2728- Measure: use React DevTools Profiler or log renders; capture baseline.29- Find churn: identify state updated on a timer, scroll, input, or animation.30- Split: move ticking state into a child; keep heavy lists static.31- Memoize: wrap leaf rows with `memo` only when props are stable.32- Stabilize props: use `useCallback`/`useMemo` for handlers and derived values.33- Avoid derived work in render: precompute, or compute inside memoized helpers.34- Control list size: window/virtualize long lists; avoid rendering hidden items.35- Keys: ensure stable keys; avoid index when order can change.36- Effects: verify dependency arrays; avoid effects that re-run on every render.37- Style/layout: watch for expensive layout thrash or large Markdown/diff renders.3839## Optimization Patterns4041### Isolate ticking state4243Move a timer or animation counter into a child so the parent list never re-renders on each tick.4445```tsx46// ❌ Before – entire parent (and list) re-renders every second47function Dashboard({ items }: { items: Item[] }) {48 const [tick, setTick] = useState(0);49 useEffect(() => {50 const id = setInterval(() => setTick(t => t + 1), 1000);51 return () => clearInterval(id);52 }, []);53 return (54 <>55 <Clock tick={tick} />56 <ExpensiveList items={items} /> {/* re-renders every second */}57 </>58 );59}6061// ✅ After – only <Clock> re-renders; list is untouched62function Clock() {63 const [tick, setTick] = useState(0);64 useEffect(() => {65 const id = setInterval(() => setTick(t => t + 1), 1000);66 return () => clearInterval(id);67 }, []);68 return <span>{tick}s</span>;69}7071function Dashboard({ items }: { items: Item[] }) {72 return (73 <>74 <Clock />75 <ExpensiveList items={items} />76 </>77 );78}79```8081### Stabilize callbacks with `useCallback` + `memo`8283```tsx84// ❌ Before – new handler reference on every render busts Row memo85function List({ items }: { items: Item[] }) {86 const handleClick = (id: string) => console.log(id); // new ref each render87 return items.map(item => <Row key={item.id} item={item} onClick={handleClick} />);88}8990// ✅ After – stable handler; Row only re-renders when its own item changes91const Row = memo(({ item, onClick }: RowProps) => (92 <li onClick={() => onClick(item.id)}>{item.name}</li>93));9495function List({ items }: { items: Item[] }) {96 const handleClick = useCallback((id: string) => console.log(id), []);97 return items.map(item => <Row key={item.id} item={item} onClick={handleClick} />);98}99```100101### Prefer derived data outside render102103```tsx104// ❌ Before – recomputes on every render105function Summary({ orders }: { orders: Order[] }) {106 const total = orders.reduce((sum, o) => sum + o.amount, 0); // runs every render107 return <p>Total: {total}</p>;108}109110// ✅ After – recomputes only when orders changes111function Summary({ orders }: { orders: Order[] }) {112 const total = useMemo(() => orders.reduce((sum, o) => sum + o.amount, 0), [orders]);113 return <p>Total: {total}</p>;114}115```116117### Additional patterns118119- **Split rows**: extract list rows into memoized components with narrow props.120- **Defer heavy rendering**: lazy-render or collapse expensive content until expanded.121122## Profiling Validation Steps1231241. Open **React DevTools → Profiler** tab.1252. Click **Record**, perform the slow interaction, then **Stop**.1263. Switch to **Flamegraph** view; any bar labeled with a component and time > ~16 ms is a candidate.1274. Use **Ranked chart** to sort by self render time and target the top offenders.1285. Apply one optimization at a time, re-record, and compare render counts and durations against the baseline.129130## Example Reference131132Load `references/examples.md` when the user wants a concrete refactor example.133134## Limitations135- Use this skill only when the task clearly matches the scope described above.136- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.137- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.