Created
January 7, 2019 22:36
-
-
Save wesleymonaro/ace81811241e52e4fca8f3f47e2fd2d7 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
export const compraMateriais = () => { | |
return dispatch => { | |
// Código para fazer requisição a uma API | |
dispatch({ | |
type: "COMPRA_MATERIAL", | |
payload: { | |
nome: "Caixa de canetas", | |
qtd: 20 | |
} | |
}); | |
}; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment