Alex Merced converts the react project created using the React CDN into one using Create React App.
The issue I have at the end is due to a recent release of CRA the fix is below:
First uninstall create-react-app globally by this command:
npm uninstall -g create-react-app
then in your project directory:
npm install create-react-app@latest
finally:
npx create-react-app my-app
Learn more at AlexMercedCoder.com