Uncaught Error: input is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`
input tag로 radio를 만들고 있는 중이다.
<input type="radio" ... > item1 </input>
<input type="radio" ... />
<label> item1 </label>
input은 하위 콘텐츠를 가질 수 없는 빈 요소이다. 그러므로 </input>이 필요가 없다는 뜻!
그래서 예러가 뜬 것이다.
참조_codingEverybody{}