Skip to main content
Module

x/jotai/src/utils/atomWithReducer.ts

👻 Primitive and flexible state management for React
Go to Latest
File
import { atom } from 'jotai'import type { WritableAtom } from 'jotai'
export function atomWithReducer<Value, Action>( initialValue: Value, reducer: (value: Value, action?: Action) => Value): WritableAtom<Value, Action | undefined>
export function atomWithReducer<Value, Action>( initialValue: Value, reducer: (value: Value, action: Action) => Value): WritableAtom<Value, Action>
export function atomWithReducer<Value, Action>( initialValue: Value, reducer: (value: Value, action: Action) => Value) { const anAtom: any = atom(initialValue, (get, set, action: Action) => set(anAtom, reducer(get(anAtom), action)) ) return anAtom}