Send response from server side axios request to React/Redux app
问题 I'm a little new to creating a backend in Node/Express, but I am trying use axios to make HTTP requests. I've set up express routes that will make the necessary request and I know from using Postman that GET request I'm testing does return a response. Where I'm stuck is how to return that data and send it to my React/Redux app to use. -Server Side- //Express Route app.get('/api/recipes', recipeController.getRecipes) //Controller Function that makes axios request const axios = require('axios')