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;
}