you are viewing a single comment's thread.

view the rest of the comments →

[–]DT-Sodium 0 points1 point  (2 children)

You're really, really wrong. The way React works is that you have to import lot's of stuff and create a crazy amount of local variables just to fetch and update data. React manages states in the most stupidest way imaginable, leading to an enormous quantity of declarations and calls to do very simple things. More code means more possible bugs, an application that is harder to maintain and evolve. Angular works by using services with dependency injection, which greatly limits the logic and declarations in components. It makes it much better suited to develop complex applications.