DEV Community

Discussion on: State Management in React

Collapse
 
ivomeissner profile image
Ivo Meißner

Have you looked at React hooks? reactjs.org/docs/hooks-state.html

I feel like that makes state handling way easier. In new codebases I even have the rule to only add functional components and use hooks, instead of class-based components.