skills/smithery.ai/react-frontend

react-frontend

Installation
SKILL.md

React Frontend Development Standards

Quick Reference

Essential Hooks

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

// Effect Hook
useEffect(() => {
  // Side effect
  return () => {/* cleanup */};
}, [dependencies]);

// Context Hook
const theme = useContext(ThemeContext);
Installs
1
First Seen
Apr 20, 2026
react-frontend from smithery.ai