react-hooks-patterns

Installation
SKILL.md

React Hooks Patterns

Master modern React hooks patterns for building scalable, maintainable applications with proper state management, side effects, and custom logic reuse.

Common Hooks

useState

const [count, setCount] = useState(0);
const [user, setUser] = useState<User | null>(null);

// Functional updates
setCount(prev => prev + 1);
Installs
6
GitHub Stars
6
First Seen
Feb 21, 2026
react-hooks-patterns — spjoshis/claude-code-plugins