UNPKG

hp-redux

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