React hooks to integrate Redux-Observable Epics into a React component's lifecycle.
Provides access to the Redux-Observable actions and state observables and dependencies within the context of a React component.
npm install use-redux-observable-epic
Hook | What it does |
---|---|
useEpic |
Subscribes to the provided Epic for the lifetime of a React component. |
useEpicState$ |
A variant of useEpic which provides the emitted values as an Observable. |
useEpicState |
A variant of useEpicState$ which subscribes to the returned Observable and uses the output as React state. |
useEpic
(Source)
TODO
useEpicState$
(Source)
TODO
useEpicState
(Source)
TODO