You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Recommends using NOUN_VERB for action names and verbNoun for action creator names, and using redux-actions.
redux-actions method createActions generates automatic action creator names as nounVerb from a NOUN_VERB action name - obviously this can be coded around, but perhaps the advice could reflect the use of the module?
Recommends using NOUN_VERB for action names and verbNoun for action creator names, and using redux-actions.
redux-actions method createActions generates automatic action creator names as nounVerb from a NOUN_VERB action name - obviously this can be coded around, but perhaps the advice could reflect the use of the module?
For example, this does not work
export const { addTodo, deleteTodo } = createActions({},'TODO_ADD','TODO_DELETE');
And this does
export const { addTodo, deleteTodo } = createActions({},'ADD_TODO','DELETE_TODO');
The text was updated successfully, but these errors were encountered: