UNPKG

@wenn/onb

Version:

onb-core

11 lines (9 loc) 236 B
import { CURRENT_STEPPER } from '../constants'; export default function currentStepReducer(state = 0, action) { switch (action.type) { case CURRENT_STEPPER: return action.currentStep; default: return state; } }