...

/

Action Creators

Action Creators

Learn how to use action creators.

We'll cover the following...

As our applications grow and develop, we will start encountering more and more code like this:

store.dispatch({
  type: 'ADD_RECIPE',
  title: title.trim(),
  description: description ? description.trim() : ''
});

If we decide to use the same action in other places, we will end up having ...