React TL;DR – a human filter for most useful tech content.

All posts

Increase your React + Redux Application Performance With the Reselect Library

Why it makes sense to use selectors with your React and Redux applications:

 

  • Selectors can compute derived data, allowing Redux to store the minimal possible state.
  • Selectors are efficient. A selector is not recomputed unless one of its arguments changes.
  • Selectors are composable. They can be used as input to other selectors.