RESET
Ref: https://github.com/pmndrs/jotai/issues/217
const RESET: unique symbol
Special value that is accepted by Resettable atoms
created with atomWithReset
, atomWithDefault
or writable atom created with atom
if it accepts RESET
symbol.
Example
import { atom } from 'jotai'import { atomWithReset, useResetAtom, RESET } from 'jotai/utils'const dollarsAtom = atomWithReset(0)const centsAtom = atom((get) => get(dollarsAtom) * 100,(get, set, newValue: number | typeof RESET) =>set(dollarsAtom, newValue === RESET ? newValue : newValue / 100))const ResetExample: React.FC = () => {const setDollars = useUpdateAtom(dollarsAtom)const resetCents = useResetAtom(centsAtom)return (<><button onClick={() => setDollars(RESET)}>Reset dollars</button><button onClick={resetCents}>Reset cents</button></>)}