DEV Community

Discussion on: Why I let React go!

Collapse
 
wkrueger profile image
wkrueger

My main pain point with react is contexts and nesting hell.

Every time I need to make state globally available, creating contexts is painful. Reasoning about efficient contexts (not rerendering everything) is even more painful, which ends up requiring 3rd party state management libs.

Meanwhile, attaching scoped state in Angular is absolutely easy with viewProviders

Collapse
 
adnanbabakan profile image
Adnan Babakan (he/him)

I highly suggest you try Vue.
Vue supports nested data (same as state in React) changes and many more better features and a very well organized syntax.