mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-03 23:07:26 +03:00
10 lines
264 B
JavaScript
10 lines
264 B
JavaScript
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;
|
|
}
|
|
}
|