Skip to content

Instantly share code, notes, and snippets.

@wesleymonaro
Created January 7, 2019 22:40
Show Gist options
  • Save wesleymonaro/3b8e55b968f2920f6af98e08ce8aa8ec to your computer and use it in GitHub Desktop.
Save wesleymonaro/3b8e55b968f2920f6af98e08ce8aa8ec to your computer and use it in GitHub Desktop.
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