I have component A and component B where in after some selection in Component A, Component B should be able to get update state or selection. I have allocated separated machines for MachineA and MachineB respectively. I want to know how to get the context of MachineB in Component B which gets updated in Component A.
For eg.: Component A fetches data from Machine A and updates context of Machine B with selected product. Now Component B should be able to access store of Machine B which is updated. Any idea how to do this? I do not want to pass state as props.