본문 바로가기
개발일기/리액트

리액트 'img elements must have an alt prop, either with meaningful text, or an empty string for decorative images' 버그 해결 방법

by 프로그래머콩 2020. 2. 5.

 

<img src={url} />

 

위와 같이 적어서 버그가 났었음.

 

 

해결 방법 :

 alt="" 추가 해줌으로써 해결

alt 추가 해주니 버그남

 

이유는 차차 알아봐야 겠다...

알다가도 모를 ...이 아닌 

까도까도 계속 모르는게 나오는 리액트의 세상

 

<img src={urll alt="" />