Skip to content

Instantly share code, notes, and snippets.

@tribou
Last active August 29, 2015 14:24
Show Gist options
  • Save tribou/6e04e8d9fc27691b1d86 to your computer and use it in GitHub Desktop.
Save tribou/6e04e8d9fc27691b1d86 to your computer and use it in GitHub Desktop.
// Todo server actions
var AppDispatcher = require('../dispatcher/AppDispatcher');
var TodoConstants = require('../constants/TodoConstants');
module.exports = {
receiveRandom: function(response) {
AppDispatcher.handleServerAction({
actionType: TodoConstants.GET_RANDOM_RESPONSE,
response: response
});
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment