Skip to content

Instantly share code, notes, and snippets.

@sminutoli
Created November 10, 2016 19:59
Show Gist options
  • Save sminutoli/e63d475bb411a6062d825d8b2a5c8be1 to your computer and use it in GitHub Desktop.
Save sminutoli/e63d475bb411a6062d825d8b2a5c8be1 to your computer and use it in GitHub Desktop.
TDD Action Creator paso 3
const actionTypes = {
TRANSACTION_SUCCESS: 'my action type'
}
export actionTypes;
export function transactionSuccess(result){
return {
type: actionTypes.TRANSACTION_SUCCESS, // podría haber devuelto 'my action type'
result
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment