UNPKG

jotai

Version:

👻 Next gen state management that will spook you

4 lines (3 loc) • 239 B
import { Atom, WritableAtom, SetAtom } from './types'; export declare function useAtom<Value, Update>(atom: WritableAtom<Value, Update>): [Value, SetAtom<Update>]; export declare function useAtom<Value>(atom: Atom<Value>): [Value, never];