I'm using a MobX store to hold some user authentication data as an observable. I'd like to access some data for some functions I'd like to run outside of the inject/observer pattern with components. Is that wise to do?
For example an authenication function as so:
function authMe() { ...access mobx data here to perform conditional logic}