Is there a better way to make AJAX requests with React other than using jQuery?
I've been working on persistence with a few React apps and noticed that several online examples just use $.ajax() to make calls to the server–commonly in componentDidMount(). Is there a better way to do this? Example of tutorials that do this: React ...
Jul 23, 2016BMP