Files
Eventment/app/reducers/index.js
2019-08-06 01:36:08 -04:00

28 lines
670 B
JavaScript

import { combineReducers } from 'redux-immutable';
import { activeEvent } from './activeEvent.js';
import { activeItem } from './activeItem.js';
import { auctionFilter } from './auctionFilter.js';
import { auctions } from './auctions.js';
import { auctionView } from './auctionView.js';
import { auth } from './auth.js';
import { blockUI } from './blockUI.js';
import { events } from './events.js';
import { items } from './items.js';
import { profile } from './profile.js';
const rootReducer = combineReducers({
activeEvent,
activeItem,
auctionFilter,
auctions,
auctionView,
auth,
blockUI,
events,
items,
profile,
});
export default rootReducer;