Skip to main content
Module

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

👻 Primitive and flexible state management for React
Go to Latest
function atomWithReducer
import { atomWithReducer } from "https://deno.land/x/jotai@v2.7.0/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>