Can React / Redux be seen as an MVC environment that also captures basic object-oriented principles? In my experience, we have a thick model (global state/store) and skinny controllers ( actions creators) that dispatchperform certain actions in the right direction ( action typesused in Reducers) to create a new state object and hydrate our views (React).
I think React includes abstraction through componentsand subcomponents, inheritance / polymorphism, extending the Component class to write your own. And it seems to me that containersit allows you to feel the encapsulation, which hides / shows a certain reduction function in / out of the components.
This is how I thought about the Redux / React architecture, but I'm not sure if this is correct. Are there any key points or differences?
source
share