label에 htmlFor 속성이 없어도 됨.
htmlFor
<label> <input type='checkbox' /> {text} </label>
label이 htmlFor 속성을 가져야 하고, 그 값은 input의 id 이어야 함.
id
<input type='checkbox' id={id} /> <label htmlFor={id}> {text} </label>