@shopgate/pwa-common-commerce
Version:
Commerce library for the Shopgate Connect PWA.
13 lines (12 loc) • 323 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,
childrenByCategoryId,
rootCategories
});