AppDispatcher.js 268 B

123456789101112
  1. import {Dispatcher} from 'flux';
  2. export default Object.assign(new Dispatcher(), {
  3. // @param {object} action The data coming from the view.
  4. handleViewAction: function(action) {
  5. this.dispatch({
  6. source: 'VIEW_ACTION',
  7. action: action
  8. });
  9. }
  10. });