Skip to content

Instantly share code, notes, and snippets.

@pablopaul
Created November 21, 2016 10:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pablopaul/7a389e81c954df5cbe5e0d2c9223f2b4 to your computer and use it in GitHub Desktop.
Save pablopaul/7a389e81c954df5cbe5e0d2c9223f2b4 to your computer and use it in GitHub Desktop.
Redux Action Creator
const insertCharacterActionCreator = (char) => {
return {
type: 'CHARACTER_TYPED',
character: char
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment