I found a simple fix that you can use to get exactly the same app structure that mosh has:
npm uninstall create-react-app
npm uninstall -g create-react-app
npm install -g [email protected]
create-react-app --help //to check if installed correctly, should return the help info
create-react-app my-app [email protected]
cd my-app
npm start
8 Likes