.then(response => category.allProducts = response.data.products)
.then(response => dispatch(setAllProducts({id: category._id, allProducts: response.data.products})
categories[0].forEach((category) => {
axios.get('/api/product/findById/'+ category._id)
.then(response => category.allProducts = response.data.products)
})