UNPKG

@wenn/onb

Version:

onb-core

11 lines (9 loc) 228 B
import { CURRENT_PAGE } from '../constants'; export default function currentPageReducer(state = '/', action) { switch (action.type) { case CURRENT_PAGE: return action.current; default: return state; } }