Hacker News new | ask | show | jobs
by ess3 3137 days ago
I think the main problem is that MVCs aren't really a good way to write interfaces. You have so many state values that needs to be stored somewhere (dropdowns, input values etc). I'm not saying that redux is a good use-case everywhere but trying to write MVCs on the web is not a good fit. React is not a MVC library and not only the view part of it either...
1 comments

Isn't that part of what MVC tried to solve in the first place, by giving every single UI element its own model?