UNPKG

addsearch-search-ui

Version:

JavaScript library to develop Search UIs for the web

20 lines (16 loc) 316 B
import { SET_PAGE } from '../actions/pagination'; const initialState = { page: 1 }; export default function pagination(state = initialState, action) { switch (action.type) { case SET_PAGE: return Object.assign({}, state, { page: action.page }); default: return state } }