ReactgetStore(name)Copy PageThe component mixin makes the fluxapp context's getStore method available to the component. JavaScriptReact.createClass({ mixins: [fluxapp.mixins.component], getInitialState: function() { var store = this.getStore('name'); return { name: store.getState() }; } }); 👍On to getAction(namespace, method)Updated over 1 year ago fluxapp.createWrapper(name)getAction(namespace, method)Did this page help you?YesNo