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

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
1

Module not found: Can't resolve '@material-ui/lab/Alert'

// need to install @material-ui/lab 

yarn add @material-ui/lab
Posted by: Guest on March-11-2021
0

metarial ui Can't resolve '@mui/material'

// with npm
npm install @material-ui/core

// with yarn
yarn add @material-ui/core

import { Button } from '@material-ui/core'
Posted by: Guest on November-02-2021

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

Browse Popular Code Answers by Language