Example ReactJS - TomaszLukawskiSam/TAU GitHub Wiki

Create project

(https://github.com/facebook/create-react-app)

npx create-react-app hello-world

Run app

cd hello-world
npm start

Verify app

http://localhost:3000/

Build the app

npm run build