actionCart.js 388 B

12345
  1. export const actionCartAdd = (good, count = 1) => ({type: 'CART_ADD', good, count});
  2. export const actionCartRemove = (good) =>({type: 'CART_REMOVE', good});
  3. export const actionCartChange = (good, count) =>({type: 'CART_CHANGE', good, count});
  4. export const actionCartClear = () => ({type: 'CART_CLEAR'})
  5. export const actionCartMin = (good, count = 1) =>({type: 'CART_MINUS', good, count});