react-performance

Installation
SKILL.md

React Performance Optimization

Master react performance optimization for building high-performance, scalable React applications with industry best practices.

React.memo and Component Memoization

React.memo prevents unnecessary re-renders by memoizing component output:

import { memo } from 'react';

interface Props {
  name: string;
  onClick: () => void;
}
Installs
89
GitHub Stars
166
First Seen
Jan 22, 2026
react-performance — thebushidocollective/han