Reactjs – How can I start a React app from terminal that has C# controllers?
I have a reactjs app that has controllers written in c#. I have a c# service that makes a call to the controller via the following syntax const getUserDetails = (userId) => { return data_post('user/GetUser/' + userId, {}) } That…