DZ
Size: a a a
DZ
NK
NK
DZ
A
NK
at
DK
DK
DK
DK
NK
const potionsReducer = (state = [ 'health' ], action) =>
subReducers[action.type]
? subReducers[action.type](state, action.payload)
: state
const potionsReducer = (state = [ 'health' ], action) =>
(subReducers[action.type] || _ => _)(state, action.payload)
DK
NK
DK
const potionsReducer = (state = [ 'health' ], action) =>
subReducers[action.type]
? subReducers[action.type](state, action.payload)
: state
const potionsReducer = (state = [ 'health' ], action) =>
(subReducers[action.type] || _ => _)(state, action.payload)
NK
DK
DK
DK
NK