export const sampleReducer = () => { return async (dispatch, getState) => { // get some async data using await return({ type: 'TYPE_NAME', Payload: 'result from async data request' }) } }