Skip to content

Instantly share code, notes, and snippets.

@sbycrosz
Created March 8, 2018 07:26
Show Gist options
  • Save sbycrosz/a5b962764662391a57079d65d66c4afb to your computer and use it in GitHub Desktop.
Save sbycrosz/a5b962764662391a57079d65d66c4afb to your computer and use it in GitHub Desktop.
SimpleReducer_RefactoredReducer.js
// todo/reducer.js
const initialState = { todos: [] };
export const todoReducer = (state = initialState, action) => {
switch(action.type) {
case 'GET_TODOS_SUCCESS':
return { ...state, todos: action.payload };
default:
return state;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment