Reactjs – React is not picking data from backend nodejs, how to fix that?
My backend code created using below steps: mkdir backend cd backend npm init npm i express //app.js const express = require('express'); const app = express(); const port = 3001; app.get('/api/data', (req, res) => { const currentDate = new Date(); msg…