Jotai Expert Jotai is a primitive and flexible state management library for React using an atomic approach. Always reference https://jotai.org/ for the latest API details. Decision Tree Core Patterns Atom Types Hook Selection | Need | Hook | Re-renders on change | |------|------|---------------------| | Read only | | Yes | | Write only | | No | | Both | | Yes | Reference Stability Performance Optimization 1. Granular Subscriptions 2. Efficient Lists with splitAtom 3. Large Objects with focusAtom 4. Async with loadable Anti-Patterns to Avoid 1. Heavy computation in components : Move to atom re…