If I have multiple components that I navigate between and I use React context object in all the components for state management.
So for e.g. if I navigate from /route1 (Component1) to /route2 (Component2) and I use CommonContext object in both. In /route2 (Component2), I update the CommonContext and then go back to /route1 (Component1). Would the updated state be reflected in Component1 now. So basically, the question is
does React Context API work with browser back ?