Merging changes committed to wrong branch
This commit is contained in:
parent
f64b6ad31c
commit
d39870f2ca
2 changed files with 19 additions and 0 deletions
8
src/constants/cart-categories.js
Normal file
8
src/constants/cart-categories.js
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
const cartCategories = {
|
||||
VAPS: "vaps",
|
||||
GLASS_PARTS: "glassParts",
|
||||
SUPPORTING_ITEMS: "supportingItems",
|
||||
PROMOS: "promos",
|
||||
};
|
||||
|
||||
export { cartCategories };
|
||||
11
src/constants/cart-item-types.js
Normal file
11
src/constants/cart-item-types.js
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
const cartItemTypes = {
|
||||
FRONT_WIPER: "FRONT WIPER",
|
||||
REAR_WIPER: "REAR WIPER",
|
||||
SUPPORTING_ITEMS: "SUPPORTING ITEMS",
|
||||
GLASS_PARTS: "GLASS PARTS",
|
||||
RAIN_DEFENSE: "RAIN DEFENSE",
|
||||
RECYCLE_FEE: "RECYCLE FEE",
|
||||
MOBILE_FEE: "MOBILE FEE",
|
||||
};
|
||||
|
||||
export { cartItemTypes };
|
||||
Loading…
Reference in a new issue