↧
Answer by Shiroo for React + Redux - architectural Apis approach
You can use reselect (library) and you could get correct result thanks to that by merging properties in selector. https://github.com/reduxjs/reselectIt is well normalized state so there is no point in...
View ArticleReact + Redux - architectural Apis approach
I have a react app with redux, I two api calls that get the data for me.The first api call returns a group of questions array.The seccond api call returns a group of answers for each questionI also...
View Article