
react-patterns
by Zate
SKILL.md
name: react-patterns description: This skill should be used for React hooks, components, state management, performance, frontend TypeScript, Next.js, JSX/TSX, web UI components whenToUse: React code, hooks, components, React performance, frontend development with React, Next.js, TypeScript frontend, JSX, TSX files whenNotToUse: Non-React code, Vue, Angular, Svelte, pure HTML/CSS design seeAlso:
- skill: testing-strategies when: writing React tests
- skill: architecture-patterns when: structuring large React apps
- plugin: frontend-design when: creating distinctive UI designs, production-grade interfaces, avoiding generic aesthetics
React Patterns
Idiomatic React/TypeScript patterns.
Tip: For high-quality UI design beyond code patterns, consider the
frontend-designplugin if installed (/frontend-design).
Functional Components
interface Props {
name: string;
onClick: () => void;
}
const Button: React.FC<Props> = ({ name, onClick }) => (
<button onClick={onClick}>{name}</button>
);
Hooks
// State
const [count, setCount] = useState(0);
// Effect with cleanup
useEffect(() => {
const timer = setInterval(() => tick(), 1000);
return () => clearInterval(timer);
}, []);
// Memoization
const expensive = useMemo(() => compute(data), [data]);
const handler = useCallback(() => doThing(id), [id]);
Custom Hooks
function useLocalStorage<T>(key: string, initial: T) {
const [value, setValue] = useState<T>(() => {
const stored = localStorage.getItem(key);
return stored ? JSON.parse(stored) : initial;
});
useEffect(() => {
localStorage.setItem(key, JSON.stringify(value));
}, [key, value]);
return [value, setValue] as const;
}
Performance
- Use
React.memofor expensive components - Avoid inline objects/functions in props
- Use
keyprop correctly in lists
Score
Total Score
Based on repository quality metrics
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
3ヶ月以内に更新がある
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
Reviews
Reviews coming soon