UNPKG

e-lado

Version:

[![CircleCI](https://circleci.com/gh/sharetribe/sharetribe/tree/master.svg?style=svg)](https://circleci.com/gh/sharetribe/sharetribe/tree/master) [![Dependency Status](https://gemnasium.com/sharetribe/sharetribe.png)](https://gemnasium.com/sharetribe/shar

22 lines (20 loc) 875 B
import onboardingGuideReducer from './OnboardingGuideReducer'; import flashNotificationReducer from './FlashNotificationReducer'; import searchPageReducer from './SearchPageReducer'; import routesReducer from './RoutesReducer'; import manageAvailabilityReducer from './ManageAvailabilityReducer'; // This is how you do a directory of reducers. // The `import * as reducers` does not work for a directory, but only with a single file export default { flashNotifications: flashNotificationReducer, marketplaceContext: (state = {}) => state, marketplace: (state = {}) => state, onboarding_guide_page: onboardingGuideReducer, searchPage: searchPageReducer, routes: routesReducer, listings: (state = {}) => state, profiles: (state = {}) => state, topbar: (state = {}) => state, user: (state = {}) => state, manageAvailability: manageAvailabilityReducer, };