Created
January 7, 2019 22:40
-
-
Save wesleymonaro/3b8e55b968f2920f6af98e08ce8aa8ec to your computer and use it in GitHub Desktop.
This file contains hidden or 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
const INITIAL_STATE = { | |
materiais: [] | |
}; | |
export default (state = INITIAL_STATE, action) => { | |
switch (action.type) { | |
case "COMPRA_MATERIAL": | |
return { ...state, materiais: [...state.materiais, action.payload] }; | |
default: | |
return state; | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment