Answers for "Module not found: Can't resolve '@material-ui/icons/Delete'"

9

Module not found: Can't resolve '@material-ui/icons/Menu'

You need to install Icons
Yarn add @material-ui/icons
npm install @material-ui/icons
Posted by: Guest on November-17-2020
5

Module not found: Can't resolve '@material-ui/core/Button'

// Install the module usiong the command line
npm install @material-ui/core
Posted by: Guest on December-19-2020
3

Cannot find module '@material-ui/icons/Menu'

yarn add @material-ui/icons
Posted by: Guest on July-03-2020
0

Module not found: Can't resolve '@material-ui/icons/Delete'

THis is the FIX:

npm install @mui/icons-material
Posted by: Guest on October-18-2021
0

Module not found: Can't resolve '@material-ui/icons/Delete'

Install these two packages. This should resolve the errors

npm install @material-ui/core
npm install @material-ui/icons
Posted by: Guest on October-18-2021

Code answers related to "Module not found: Can't resolve '@material-ui/icons/Delete'"

Browse Popular Code Answers by Language