jotai-expert
Installation
SKILL.md
Jotai Expert
Jotaiを使用したReact状態管理の実装ガイド。
Core Concepts
Atom
状態の最小単位。値を持たず、Storeに保存される。
// Primitive atom
const countAtom = atom(0)
const nameAtom = atom('')
// Derived read-only atom
const doubleAtom = atom((get) => get(countAtom) * 2)
Related skills