react-development
Installation
SKILL.md
React Development
Modern React patterns from the official docs and community expertise.
Instructions
When working with React code, apply these principles in order of importance:
1. Think in React
Follow the 5-step process for building React UIs:
- Break UI into component hierarchy — One component = one responsibility
- Build static version first — Use props only, no state yet
- Find minimal state — Ask: Does it change? Is it passed via props? Can it be computed?
- Identify where state lives — Find closest common parent of components that need it
- Add inverse data flow — Pass callbacks down to update parent state