Skip to content

Instantly share code, notes, and snippets.

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