DEV Community

Discussion on: Do we really need Flux, Vuex, Pinia, MobX and all the other Statemanagement Frameworks?

Collapse
 
joelbonetr profile image
JoelBonetR 🥇 • Edited

Like always it depends on the project needs.
For example if you've a React app which is plenty of Forms, you don't even need to manage the forms with React.

HTML forms have state by default so you can just rely on web standards to handle that and you'll avoid re-renderings and so on which at the end is better most of the time.

Use React by what it's meant to do (build the UI) and handle the rest on the most convenient way, be React or any other thing.