I\'m currently learning React and I am trying to figure out how to use it with Redux for building a mobile app. I\'m kind of confused on how the two are related/usable toget
Having used Redux and personally finding it cumbersome, I found passing around an object to my components as a prop can be a much easier way to maintain state. Not to mention it's an easy way of making references to functions to call in other components. It can solve a lot of the cumbersome issues of passing messages between components in React, so it's a two for one.