function useCreateAtom<T>(getValue, options?): ReadonlyAtom<T>;Defined in: node_modules/.pnpm/@tanstack+react-store@0.11.0_react-dom@19.2.8_react@19.2.8__react@19.2.8/node_modules/@tanstack/react-store/dist/useCreateAtom.d.ts:16
Creates a stable atom instance for the lifetime of the component.
Pass an initial value to create a writable atom, or a getter function to create a readonly derived atom. This hook mirrors the overloads from createAtom, but ensures the atom is only created once per mount.
T
(prev?) => T
AtomOptions<T>
ReadonlyAtom<T>
const countAtom = useCreateAtom(0)function useCreateAtom<T>(initialValue, options?): Atom<T>;Defined in: node_modules/.pnpm/@tanstack+react-store@0.11.0_react-dom@19.2.8_react@19.2.8__react@19.2.8/node_modules/@tanstack/react-store/dist/useCreateAtom.d.ts:17
Creates a stable atom instance for the lifetime of the component.
Pass an initial value to create a writable atom, or a getter function to create a readonly derived atom. This hook mirrors the overloads from createAtom, but ensures the atom is only created once per mount.
T
T
AtomOptions<T>
Atom<T>
const countAtom = useCreateAtom(0)