shlink-web-client/src/short-urls/reducers/shortUrlsListParams.js

11 lines
250 B
JavaScript
Raw Normal View History

2018-07-29 20:25:22 +03:00
import { LIST_SHORT_URLS } from './shortUrlsList';
export default function reducer(state = { page: 1 }, action) {
switch (action.type) {
case LIST_SHORT_URLS:
return { ...state, ...action.params };
default:
return state;
}
}