Search code examples
javascriptreactjsmaterial-uimodulenotfounderror

How to solve module not found error : Module not found: Can't resolve '@mui/icons-material/Adb'?


I already install material-ui core by using this command.

 npm i @material-ui/core

But, after this when I run my reactjs code, it throws an error like this

 Module not found: Can't resolve '@mui/icons-material/Adb'

Please help me, how can I resolve this error?

Thanks in advance


Solution

  • @material-ui/core is the core package for MUI v4, but @mui/icons-material is for MUI v5, your code is using MUI v5. So here is what you need to install:
    npm install @mui/icons-material