Invalid DOM property `for`
上記のエラーの原因は、jsx構文でforが重複文を表すため、エラー文に示すようにラベルのforをhtmlForに変更できます.
<label htmlFor="receiver">
받는사람
<label htmlFor="tome" className="checkbox-tome">
<input name="tome" type="checkbox" />
내게쓰기
</label>
<input
type="email"
name="receiver"
placeholder="수신이메일을 작성해주세요"
className="Mailinfo-input"
value={emailInfo.receiver}
onChange={handleChange}
/>
</label>
Reference
この問題について(Invalid DOM property `for`), 我々は、より多くの情報をここで見つけました https://velog.io/@kaitlin_k/Invalid-DOM-property-forテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol