@shopgate/pwa-common-commerce
Version:
Commerce library for the Shopgate Connect PWA.
3 lines • 350 B
JavaScript
import{combineReducers}from'redux';import rootCategories from"./rootCategories";import categoriesById from"./categoriesById";import childrenByCategoryId from"./childrenByCategoryId";/**
* The category reducer.
*/export default combineReducers({categoriesById:categoriesById,childrenByCategoryId:childrenByCategoryId,rootCategories:rootCategories});