Skip to content

Instantly share code, notes, and snippets.

@arackaf
Created December 22, 2015 19:22
Show Gist options
  • Save arackaf/49d177fc1dc44f712c72 to your computer and use it in GitHub Desktop.
Save arackaf/49d177fc1dc44f712c72 to your computer and use it in GitHub Desktop.
function subjectsReducer(state = initialSubjectsState(), action = {}) {
switch (action.type) {
case LOAD_SUBJECTS_RESULTS:
return Object.assign({}, state, {list: stackAndGetTopLevelSubjects(action.subjects)});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment