Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hindmost/2b3ebf46cf69399730e7d0e46f377d6d to your computer and use it in GitHub Desktop.
Save hindmost/2b3ebf46cf69399730e7d0e46f377d6d to your computer and use it in GitHub Desktop.
reduxed-chrome-storage article: async action creator example
const addTodo = text => ({
type: 'ADD_TODO',
text
});
const delayAddTodo = (text) => dispatch => {
setTimeout(() => {
dispatch(addTodo(text));
}, 1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment