title |
---|
useResetAtom |
function useResetAtom<Value>(
anAtom: WritableAtom<Value, typeof RESET>
): () => void | Promise<void>
Resets a Resettable atom to its initial value.
import { useResetAtom } from 'jotai/utils'
import { todoListAtom } from './store'
const TodoResetButton = () => {
const resetTodoList = useResetAtom(todoListAtom)
return <button onClick={resetTodoList}>Reset</button>
}