Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
503 Bytes
const AddToCart = (data) => {
return {
type: "ADD_TO_CART",
data: data,
};
};
const RemoveCart = (id) => {
return {
type: "REMOVE_FROM_CART",
id: id,
};
};
const IncreaseQuantity = (id) => {
return {
type: "INCREASE_QUANTITY",
id: id,
};
};
const DecreaseQuantity = (id) => {
return {
type: "DECREASE_QUANTITY",
id: id,
};
};
export { AddToCart, RemoveCart,IncreaseQuantity,DecreaseQuantity };