0

I'm trying to run a React project created in Mac, I had not this problem neither in Windows or Mac, but I'm facing the following errors when I try to run (npm start) in Ubuntu:

./node_modules/@material-ui/core/esm/ButtonBase/ButtonBase.js

Module not found: Can't resolve 'react-dom' in '/node_modules/@material-ui/core/esm/ButtonBase'

I tried to delete node_modules and ran npm install again, but the problem persists.

Can someone help me with this?

Maf
  • 696
  • 1
  • 8
  • 23

1 Answers1

0

Just install react and react-dom

npm i react react-dom
H20rider
  • 2,162
  • 5
  • 29
  • 47