React and Flask Demo
# start backend, should have Flask and flask-cors installed.
cd backend
export FLASK_APP=hello.py
flask run
cd ..
## start frontend
cd frontend
npm startOpen http://localhost:3000, then you will see the Hello, Name! message. You can change the name variable in React to get a different message from flask.