Skip to content

Instantly share code, notes, and snippets.

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