Does react have state management similar to vuex?

I just learned that react feels basically similar to vue except for two-way data binding!
I just can"t find something about state management. does react have a state management similar to vuex?

Sep.24,2021

redux does not necessarily bind to a framework


react-redux,react-mobx,RxJs


redux or mobx

however, at present, react has a new context API that can also achieve unified global state management, which can replace the above. You can search

for details.

you can try react-tyshemo to enjoy the same data manipulation as vue

Menu