tessl install github:Dimillian/Skills --skill react-component-performanceAnalyze and optimize React component performance issues (slow renders, re-render thrash, laggy lists, expensive computations). Use when asked to profile or improve a React component, reduce re-renders, or speed up UI updates in React apps.
Review Score
85%
Validation Score
13/16
Implementation Score
73%
Activation Score
100%
Identify render hotspots, isolate expensive updates, and apply targeted optimizations without changing UI behavior.
memo only when props are stable.useCallback/useMemo for handlers and derived values.useCallback for handlers passed to memoized rows.useMemo or helper functions when inputs are stable.Load references/examples.md when the user wants a concrete refactor example.