Skip to content

Instantly share code, notes, and snippets.

@jamesseanwright
Created December 22, 2018 17:52
Show Gist options
  • Select an option

  • Save jamesseanwright/345f5ed87d832e9d08a7c5153481a136 to your computer and use it in GitHub Desktop.

Select an option

Save jamesseanwright/345f5ed87d832e9d08a7c5153481a136 to your computer and use it in GitHub Desktop.
Redux action creator example
export const addMessage = (message: string) => ({
type: ADD_MESSAGE,
payload: {
message,
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment