I.
1. form에 onSubmit 실행
<form
id="posting"
onSubmit={postDiary}
>
<div className={form.dateForm}>
<label htmlFor="form__date"></label>
<input
id="form__date"
type="date"
ref={이름}
/>
</div>
</form>
const 이름 = useRef();
const enteredDate = 이름.current.value;
const data = await fetch(
"api주소",
{
method: "POST",
body: date,
}
).then((res) => res.json());
II.
1. 분해하기
req.body에 있는 내용을 분해한다.