Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save lesniakania/08d29e3f9219fae1b78e to your computer and use it in GitHub Desktop.
Save lesniakania/08d29e3f9219fae1b78e to your computer and use it in GitHub Desktop.
import ActionTypes from '../constants/ActionTypes';
let SubmissionReducer = (state = {}, action) => {
switch (action.type) {
case ActionTypes.RECEIVE_SUBMISSION:
case ActionTypes.RATING_PERFORMED:
return action.submission;
default:
return state;
}
};
export default SubmissionReducer;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment