Returns the store instance registered to the context

fluxapp.registerStore('user', {
  getInitialState: function() {
   return {}; 
  }    
});

var context = fluxapp.createContext();
var instance = context.getStore('user');

👍

On to getDispatcher()