Skip to content

Instantly share code, notes, and snippets.

@jacobp100
Created August 22, 2016 09:42
Show Gist options
  • Save jacobp100/4858d336538c5e20c755dadba3c9d7dd to your computer and use it in GitHub Desktop.
Save jacobp100/4858d336538c5e20c755dadba3c9d7dd to your computer and use it in GitHub Desktop.
export const setCats = () => async (dispatch, getState) => {
const cats = await dispatch(fetchJson('GET', '/cats', filter));
dispatch({ type: SET_CATS, cats });
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment