react
Installation
SKILL.md
When to Use
- Creating or refactoring React components
- Implementing custom hooks
- Managing state (local, context, or global)
- Optimizing component performance
- Handling side effects
Critical Patterns
Functional Components (Always)
// Good: Functional component with hooks
export function UserProfile({ userId }) {
const [user, setUser] = useState(null);
Related skills