import { UPDATE_SHORT_URLS_LIST } from './shortUrlsList'; export default function reducer(state = { page: 1 }, action) { switch (action.type) { case UPDATE_SHORT_URLS_LIST: return { ...state, ...action.params }; default: return state; } }