Skip to content

Instantly share code, notes, and snippets.

@clucasalcantara
Last active October 13, 2018 05:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save clucasalcantara/5fdacc756ee31802b26e439be60ae32b to your computer and use it in GitHub Desktop.
Save clucasalcantara/5fdacc756ee31802b26e439be60ae32b to your computer and use it in GitHub Desktop.
Cart Add Product action creator
/**
* Product Example
*
* const product = {
* id: 'adsa-1234ds-123s',
* name: 'Batman Mask',
* price: 8.97,
* }
*/
function addProductToCart(product) {
return {
type : "CART/ADD_PRODUCT",
product
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment