Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

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

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

Type Parameters

Value
Action

Parameters

initialValue: Value
reducer: (value: Value, action?: Action) => Value

Returns

WritableAtom<Value, [Action], void>

Type Parameters

Value
Action

Parameters

initialValue: Value
reducer: (value: Value, action: Action) => Value

Returns

WritableAtom<Value, [Action], void>