@shopgate/pwa-common-commerce
Version:
Commerce library for the Shopgate Connect PWA.
1 lines • 979 B
JavaScript
import{combineReducers}from'redux';import productsById from"./productsById";import imagesByProductId from"./imagesByProductId";import descriptionsByProductId from"./descriptionsByProductId";import propertiesByProductId from"./propertiesByProductId";import shippingByProductId from"./shippingByProductId";import variantsByProductId from"./variantsByProductId";import optionsByProductId from"./optionsByProductId";import resultsByHash from"./resultsByHash";import productRelationsByHash from"./productRelationsByHash";import mediaByProductId from"./mediaByProductId";export default combineReducers({descriptionsByProductId:descriptionsByProductId,imagesByProductId:imagesByProductId,optionsByProductId:optionsByProductId,productRelationsByHash:productRelationsByHash,productsById:productsById,propertiesByProductId:propertiesByProductId,resultsByHash:resultsByHash,shippingByProductId:shippingByProductId,variantsByProductId:variantsByProductId,mediaByProductId:mediaByProductId});