Skip to content

Instantly share code, notes, and snippets.

@vzaidman
Last active December 8, 2017 11:29
Show Gist options
  • Save vzaidman/c3bb23b79b14e9bba1b5a13339a9f763 to your computer and use it in GitHub Desktop.
Save vzaidman/c3bb23b79b14e9bba1b5a13339a9f763 to your computer and use it in GitHub Desktop.
Redux Toolbelt Simple Action and Reducer
impoort { makeThunkAsyncActionCreator } from 'redux-toolbelt-thunk'
export const fetchTodos = makeThunkAsyncActionCreator('FETCH_TODOS', filter => fetchTodosFromServer(filter))
impoort { makeAsyncReducer } from 'redux-toolbelt'
export const todos = makeAsyncReducer(fetchTodos)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment