본문 바로가기
IT 개발, develop

[react] If you meant to render a React component, start its name with an uppercase letter.

by newly everyday 2023. 10. 16.

 

다음과 같은 에러가 나타났다면..

component  이름을 소문자로 쓴 것인지, 틀리게 썼는지 살펴봐야 한다. 

 

Warning: The tag <list> is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter.

 

List  인데 list로 써서 위와 같은 에러를 만났다.

List 로 고치니 정상 동작~

 

import {Paper, List, Container} from '@material-ui/core'

 

 

댓글