UNPKG

@wfp/react

Version:
21 lines (17 loc) 440 B
// Quack! This is a duck. https://github.com/erikras/ducks-modular-redux const LOAD = 'redux-form-examples/account/LOAD'; const reducer = (state = {}, action) => { switch (action.type) { case LOAD: return { data: action.data, }; default: return state; } }; /** * Simulates data loaded into this reducer from somewhere */ export const load = data => ({ type: LOAD, data }); export default reducer;