Home > Software design >  Cant install Material UI to new react app
Cant install Material UI to new react app

Time:03-30

Im new to the dev world and I'm trying to start a new react app using material UI as the component library but I keep getting the following error:

Error image

And my files look like this:

Folder screenshot

Can anyone help in layman's terms?

TIA

CodePudding user response:

npm install --save --legacy-peer-deps @material-ui/core

this Material UI version does not support React v18 yet I suggest going for a lower version

  • Related