Skip to content

Instantly share code, notes, and snippets.

@minajevs
Last active October 12, 2018 08:48
Show Gist options
  • Save minajevs/2da470d625454809b93048571622c316 to your computer and use it in GitHub Desktop.
Save minajevs/2da470d625454809b93048571622c316 to your computer and use it in GitHub Desktop.
import {Action, ActionCreator, Dispatch} from 'redux'
import {ThunkAction} from 'redux-thunk'
const thunk: ActionCreator<ThunkAction<Action, IState, void>> = (
payload: string
) => {
return (dispatch: Dispatch<IState>): Action => {
doSomething(payload)
return dispatch(someAction())
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment