[React] 에러해결 : img elements must have an alt prop, either with meaningful text, or an empty string for decorative images.eslintjsx-a11y/alt-text [4/30 study]
2024년 05월 03일 00시 07분 58초에 업로드 된 글입니다.
작성자: 동혁이
❗️에러해결❗️
❗️ 에러
프로젝트 작업 중 아래와 같이 img 태그 사용했는데 에러 발생했습니다!
img src={image} />
❗️ 에러 메시지
img elements must have an alt prop, either with meaningful text, or an empty string for decorative images.eslintjsx-a11y/alt-text
❗️ 해결 방법
img 태그 사용시 src 속성과 함께 alt도 같이 작성해야 합니다! (alt의 내용은 자유!) 오류해결!