Created
December 22, 2018 17:52
-
-
Save jamesseanwright/345f5ed87d832e9d08a7c5153481a136 to your computer and use it in GitHub Desktop.
Redux action creator example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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