Skip to main content
Module

x/jotai/src/vanilla/utils.ts>atomWithStorage

👻 Primitive and flexible state management for React
Go to Latest
function atomWithStorage
import { atomWithStorage } from "https://deno.land/x/jotai@v2.7.0/src/vanilla/utils.ts";

Parameters

key: string
initialValue: Value
storage: AsyncStorage<Value>
optional
options: { getOnInit?: boolean; }

Returns

WritableAtom<Value | Promise<Value>, [SetStateActionWithReset<Value | Promise<Value>>], Promise<void>>

Parameters

key: string
initialValue: Value
optional
storage: SyncStorage<Value>
optional
options: { getOnInit?: boolean; }

Returns

WritableAtom<Value, [SetStateActionWithReset<Value>], void>