Skip to content

Instantly share code, notes, and snippets.

@hedgerh
Last active November 4, 2015 02:27
Show Gist options
  • Select an option

  • Save hedgerh/1e3486ee94d9e005db8e to your computer and use it in GitHub Desktop.

Select an option

Save hedgerh/1e3486ee94d9e005db8e to your computer and use it in GitHub Desktop.
const ADD_TO_CART = 'ADD_TO_CART';
const CHECKOUT_REQUEST = 'CHECKOUT_REQUEST';
export function addToCart(productId) {
return {
type: ADD_TO_CART,
productId
}
}
export function checkout(products) {
return {
type: CHECKOUT_REQUEST
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment