back
loading skill details...
Use when reading or writing React components (.tsx, .jsx files with React imports).
React Best Practices Pair with TypeScript When working with React, always load both this skill and typescript-best-practices together. TypeScript patterns (type-first development, discriminated unions, Zod validation) apply to React code. Core Principle: Effects Are Escape Hatches Effects let you "step outside" React to synchronize with external systems. Most component logic should NOT use Effects. Before writing an Effect, ask: "Is there a way to do this without an Effect?" Decision Tree Need to respond to user interaction? Use event handler Need computed value from props/state? Calculate during render Need cached expensive calculation? Use useMemo Need to reset state on prop change? Use key prop Need to synchronize with external system? Use Effect with cleanup Need non-reactive code in Effect? Use useEffectEvent Need mutable value that doesn't trigger render? Use ref
don't have the plugin yet? install it then click "run inline in claude" again.