Failed to compile ./src/component/Main.js Module not found: Can't resolve '@material-ui/icons/PhotoCamera' in 'C:\react_study\src\component'
GitHub – mui/material-ui: MUI Core: Ready-to-use foundational React components, free forever. It includes Material UI, which implements Google’s Material Design.
MUI Core: Ready-to-use foundational React components, free forever. It includes Material UI, which implements Google’s Material Design. – GitHub – mui/material-ui: MUI Core: Ready-to-use founda…
깃허브에 공개된 react 기반 mul-org/material-ui 예시 템플릿 페이지를 작동시키는 과정에서 material-ui/icons 폴더를 찾을 수 없다는 오류로 인해 컴파일을 실패하였다.
해결책
npm install @material-ui/icons
npm install을 통해 @material-ui/icons 라이브러리를 따로 설치한다.
그리고 다시 리액트 템플릿 페이지를 작동시켜보면…
라이브러리가 성공적으로 로드되면서 페이지 또한 잘 나오는 것을 확인해볼 수 있다.