The react component mixin exposes the fluxapp context's getAction method.

React.createClass({ mixins: [fluxapp.mixins.component], onChange: function() { var action = this.getAction('user', 'permissions'); action(true); } });

👍

On to getActions(namespace)