This repository has been archived by the owner on Sep 14, 2023. It is now read-only.
Releases: derrickbeining/react-atom
Releases · derrickbeining/react-atom
v3.0.9
v3.0.8
v3.0.7
v3.0.6
v3.0.5
v3.0.4
v3.0.3
v3.0.2
v3.0.1
v3.0.0
3.0.0 (2018-11-24)
Features
- rename
deref
useAtom
; add non-hookderef
;select
option (f714acc)
BREAKING CHANGES
deref
is no longer a custom React hook and therefore function components that
call it will no longer be subscribed to the Atom's state.deref
now only reads Atom state and is
therefore useful for reading Atom state from outside function components. The previous behavior of
deref
is now available in theuseAtom
function, which is a custom React hook.