Skip to content

Instantly share code, notes, and snippets.

@tomchentw
Last active August 29, 2015 14:16
Show Gist options
  • Save tomchentw/68b0c89d6f5e6d672e12 to your computer and use it in GitHub Desktop.
Save tomchentw/68b0c89d6f5e6d672e12 to your computer and use it in GitHub Desktop.
'use strict';
var AppDispatcher = require('../dispatcher/AppDispatcher');
var Constants = require('../constants/AppConstants');
exports.addToCart = function (product) {
AppDispatcher.handleViewAction({
type: Constants.ActionTypes.ADD_TO_CART, // it's just "ADD_TO_CART"
product: product
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment