@shopgate/engage
Version:
Shopgate's ENGAGE library.
18 lines (16 loc) • 456 B
JavaScript
import { combineReducers } from 'redux';
import userFormInput from "./userFormInput";
import userSearch from "./userSearch";
import storeFinderSearch from "./storeFinderSearch";
import storage from "./storage";
import user from "./user";
/**
* @typedef {import('../locations.types').LocationsState} LocationsState
*/
export default combineReducers(/** @type {LocationsState} */{
userFormInput,
userSearch,
user,
storeFinderSearch,
storage
});