I've been wondering if there's an easier way to build React apps. I had worked with UIL/Motif (almost 30 years ago now) and XUL from Mozilla which attempted to separate logic from view specifications. I was wondering if we could come up with similar thing for React, which would significantly speed up development process, especially during the prototyping stages of a project.
This project tries to store all state data in a redux store, and keeps all the views "pure" with no state. All properties for views come from the redux state or are statically supplied.
I think this approach has the potential to significantly simplify React and React-native based projects, but I would like to hear from others who may have tried similar approaches; I am particularly interested in any gotchas with this approach.
https://github.com/devpkiconix/reactml/blob/master/README.md