I have two select components. If a user chooses an option from select component A, I'd like to reset select component B.
How can I reset a component back to an un-selected state.

Ok, so I figured out that I can reset the text on the Button. I have also kept a reference to the activeItem in a context that's shared between both selectors. Selecting an item in select component A now removes the activeItem from select component B and the button text is also reset.
Closing as this seems to be a generic question about React application logic and not really Blueprint-specific.
Most helpful comment
Ok, so I figured out that I can reset the text on the Button. I have also kept a reference to the
activeItemin a context that's shared between both selectors. Selecting an item in select component A now removes the activeItem from select component B and the button text is also reset.