index.js
741 Bytes
import {combineReducers} from 'redux';
import app from './app/appReducer';
import screen from './screen/screenReducer';
import screenCategory from './screenCategory/screenCategoryReducer';
import screenSub from './screenSub/screenSubReducer';
import productForBrand from './productListForBrand/productListForBrandReducer';
import productListForShop from './productListForShop/productListForShopReducer';
import productListPool from './productListPool/productListPoolReducer';
import categoryProList from './categoryProList/categoryProListReducer';
const rootReducer = combineReducers({
app,
productForBrand,
screen,
screenCategory,
screenSub,
productListForShop,
productListPool,
categoryProList,
});
export default rootReducer;