How do I run a React App locally?
React/Node app setup and deploy properly
reactjs - How deploy React app locally only in my PC? - Stack Overflow
Where To Deploy a React App?
As someone mentioned, you can use Netlify, it's a simple tool to quickly deploy static websites. Your react app can still talk to your backend somewhere else. Netlify also offers a lot of extra good stuff, like HTTPS, CD, DNS, ...
Otherwise, you can go for a more standard AWS S3 or Google Cloud Storage set up, both are heavily used by people for static sites. If you're already using AWS, S3 might be a good option to stay within the ecosystem.
More on reddit.comVideos
I've never worked with React before, but I've been tasked with updating/fixing a website built with React. Specifically, the ReadMe says "This project was bootstrapped with Create React App.". So after I clone the app from github, how do I run it locally so I can quickly view edits to the website and test it on my machine? The ReadMe talks about using yarn start to run the app in development mode so you can view the website on localhost but nothing I've tried so far seems to work.