Uncaught Error: Cannot find module ‘react/jsx-runtime’

This solution resolved my issue. I found it over here

👇️ with NPM

npm install react@latest react-dom@latest

👇️ ONLY If you use TypeScript

npm install --save-dev @types/react@latest @types/react-dom@latest

———————————————-

👇️ with YARN

yarn add react@latest react-dom@latest

👇️ ONLY If you use TypeScript

yarn add @types/react@latest @types/react-dom@latest --dev

Leave a Comment