TanStack Store Overview TanStack Store is a lightweight, framework-agnostic reactive state management library with type-safe updates, derived computations, batched mutations, and effect management. It powers the core of TanStack libraries internally and can be used as a standalone state solution. Framework adapters are available for React, Vue, Solid, Angular, and Svelte. Core primitives: - Store — reactive container with , subscriptions, and lifecycle hooks - Derived — lazily computed values that track Store/Derived dependencies - Effect — side-effect runner triggered by dependency changes -…