'value' prop on 'input' should not be null 에러 해결

sue·2021년 8월 12일
0

developic project

목록 보기
25/28

Warning: 'value' prop on 'input' should not be null. Consider using the empty string to clear the component or 'undefined' for uncontrolled components.

input value 값에 빈 문자열에 대한 처리를 추가해준다.

<input type="text" value={value || ''}/>

0개의 댓글