Redux Toolkit: createAction reference
17 June 2022 (Updated 17 June 2022)
On this page
In a nutshell
createAction
is a helper function that lets you define a Redux action type and the action creator in one step. You can use it in the following way:
Notice how the first argument to createAction
(todos/add
) becomes the type
of the generated action.
Without the helper function, we’d have to do something like:
Access action type with toString()
You can access the generated action type like so:
Sources
Tagged:
Redux
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment