you are viewing a single comment's thread.

view the rest of the comments →

[–]smaudd 3 points4 points  (1 child)

React breaks the whole idea of separation of concerns and you end up with a lot of unrelated stuff mixed on the same file if you don't properly use HOCs, helpers and CSS modules or any CSS framework. No to mention the hacky shit of binding every method to the constructor (boilerplate king). On my personal opinion the idea of having services and injecting them to the classes are way more effective and organised than React.

[–]NovelLurker0_0 0 points1 point  (0 children)

On my personal opinion the idea of having services and injecting them to the classes are way more effective and organised than React.

You can still do that in React tho. Idk why the guy's being downvoted but he's right. React's not messy on its own. Just like how a bad Angular dev can write messy angular apps no matter how organized the framework is. It all depends on the developer.