Error: input is a void element tag and must neither have children
nor use dangerouslySetInnerHTML
.
Styled-component기능을 사용했을때 , input 등 자식을 가질 수 없는 태그에
자식을 넣었을때 발생하는 에러이다.
<input className="commentBox">{user.comment}</input>
// 문제 코드
<input className="commentBox"></input>
// 해결 코드