BLOG POSTS

Why You Should Avoid Using Redux for Your Forms
2019-12-19 ByJavier Ponce
Redux is not always the best solution to handle your component state. We will see the cost of using it in your forms.

Quick intro to Redux
2019-10-21 ByTonatiuh Núñez
A quick intro to Redux to simplify 4 core concepts: Actions, Reducers, Store and Components. Redux helps you keep the state of your React app organized and centralized because managing the state only with React can become messy sometimes.

Recipes for Testing Redux Actions and Reducers
2017-11-14 ByAlfonso Alejandro Espinosa de los Monteros Andrade
I’d like to share my knowledge and personal approach to testing when building a Redux app. While there are many ways of doing this, if you are trying to figure out how to start testing your common Redux actions and reducers for your upcoming projects...