728x90
JSX에서 for 오류
Waring 코드
Warning: Invalid DOM property `for`. Did you mean `htmlFor`?
이유
JSX는 javaScrit이기 때문에 for은 반복의 의미를 가지고 있어서
HTML 상에서는 htmlFor을 써줘야 한다.
해결방법
for대신 htmlFor을 써야한다.
// warning
<label for="attach-file" className="factoryInput__label">
<label htmlFor="attach-file" className="factoryInput__label">
728x90
'React' 카테고리의 다른 글
[React] CRA 디폴트 파일인 reportWebVitals (0) | 2021.12.27 |
---|---|
[React] npm install EEXIST: file already exists 해결하기 (0) | 2021.10.21 |
[React] Warning: React does not recognize the `computedMatch` prop on a DOM element (0) | 2021.10.16 |
[React] 리액트 렌더링이 두 번 발생하는 이유 (2) | 2021.09.13 |
[React] ESLint (0) | 2021.08.08 |