NoraBytes © 2024
npm install @norabytes/reactjs-reflexive-store
or
yarn add @norabytes/reactjs-reflexive-store
v1.3.3
:- The base
ReflexiveStore
lib has been updated to thev2.2.0
which inclused breaking changes, check them on the npm page. - The
useBindToProps
hook has been removed.- Use the
useEffect
hook, eg:useEffect(() => { store.dep1.setValue(dep1); store.dep2.setValue(dep2); }, [dep1, dep2])
- Use the
- The
onComponentMount
method has been removed.- Use the
componentIsMounted$
observable instead.
- Use the
- The base
TO-DO: Write the Usage
section.
Please check the ReflexiveStore main npm
page.
You can see and test in real-time some examples by accessing this CodeSandbox link.