reponse of my request is so slowly it will not perform request at same time..
axios
.all([
axios.get('/api/completed'),
axios.get('/api/newproject'),
axios.get('/api/onprogress'),
axios.get('/api/onsale'),
axios.get('/api/project_summary'),
])
.then(axios.spread((onprogress, onsale,completed,project_summary,newproject) => {
// output of req.
}));