UNPKG

hp-redux

Version:
13 lines (9 loc) 188 B
/* eslint-env node*/ const initialState = {}; const auras = (state = initialState, action) => { switch (action.type) { default: return state; } }; module.exports = auras;