jotai-expert
Installation
SKILL.md
Jotai Expert
Implementation guide for React state management using Jotai.
Core Concepts
Atom
The smallest unit of state. Does not hold value itself; stored in the Store.
// Primitive atom
const countAtom = atom(0)
const nameAtom = atom('')
// Derived read-only atom
const doubleAtom = atom((get) => get(countAtom) * 2)