Package Exports
- react-rx
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-rx) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Hooks and utilities for combining React with RxJS Observables
Features:
- Works well with Observables emitting values synchronously. You don't pay the re-render-on-mount tax.
- Lightweight. Implemented on top of a small React Hook based core.
- Full TypeScript support.
This package offers two slightly different utilities for working with RxJS and React:
- A set of utilities for creating Reactive components
- A set of React hooks for using with observables with React
Although they share a lot of similarities, and reactiveComponent is built on top of useObservable
are not intended to be used together inside the same component as they represent two different programming styles.