Make Use of RxJS to Create Efficient React Components With Ease
Nov 6 · 6 min read
Introduction
React components are based on the concept of properties and states. While properties represent the input values from other (host) components, the state represents the internal condition of a component. The state can be derived from properties or even be computed asynchronously — e.g.. as a result of making HTTP calls.


