asynch action redux code example

Example 1: asynch action redux

const handleAsync = () => {
  return function(dispatch) {
    dispatch(requestingData())

    setTimeout(function() {
      let data = {
        users: ['Jeff', 'William', 'Alice']
      }
      // Dispatch received data action here(just a placeholder for API)
      
        dispatch(receivedData(data))
    }, 2500);
  }
};

Example 2: asynch action redux

const handleAsync = () => {
  return function(dispatch) {
    dispatch(requestingData())

    setTimeout(function() {
      let data = {
        users: ['Jeff', 'William', 'Alice']
      }
      // Dispatch received data action here(just a placeholder for API)
      
        dispatch(receivedData(data))
    }, 2500);
  }
};

Tags:

Misc Example