Comment on The Missing Manual for Signals: State Management for Python DevelopersparentComments−lbreakjai1yReact doesn't really make many assumptions regarding state management. You're free to pick the library you want. Redux used to be the standard, but I worked on applications purely using RxJS, the way signals are presented in this article.−troupo1yYou're free to pick the library you want.They are all still pretty hampered by React's model: re-render (internally, in VDOM) the whole component on any minor change.
Comments
React doesn't really make many assumptions regarding state management. You're free to pick the library you want. Redux used to be the standard, but I worked on applications purely using RxJS, the way signals are presented in this article.
They are all still pretty hampered by React's model: re-render (internally, in VDOM) the whole component on any minor change.