Created
November 3, 2015 19:12
-
-
Save lesniakania/08d29e3f9219fae1b78e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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