UNPKG

@wenn/onb

Version:

onb-core

11 lines (9 loc) 219 B
import { SAVE_RETRY_SMS } from '../constants' export default function retrySmsReducer(state = 0, action) { switch (action.type) { case SAVE_RETRY_SMS: return state + 1 default: return state } }