UNPKG

@wenn/onb

Version:

onb-core

11 lines (9 loc) 229 B
import { SAVE_LOADING } from '../constants'; export default function saveLoadingReducer(state = true, action) { switch (action.type) { case SAVE_LOADING: return action.loading; default: return state; } }