axios timeout post example
//example of an axios post request with body and config object with timeout
//timeout is response (not request) timeout
axios.post('http://mysite.com/user', { name: 'John' }, { timeout: 2 })
.then(response => { console.log(response); })
.catch(error => { console.log(error); });