[modern-react] 리액트 스터디 파일 추가

This commit is contained in:
2025-09-30 23:55:13 +09:00
parent 31bcb2efe1
commit 75ec02d506
546 changed files with 141345 additions and 0 deletions

View File

@@ -0,0 +1,60 @@
import { useState } from 'react';
export default function StateNest() {
// 인자 배열을 State로 선언
const [form, setForm] = useState({
name: '홍길동',
address: {
city: '태안',
do: '충청남도'
}
});
// 1단계 요소를 업데이트하는 핸들러
const handleForm = e => {
setForm({
...form,
[e.target.name]: e.target.value
});
};
// 2단계 요소를 업데이트하는 핸들러
const handleFormNest = e => {
setForm({
...form,
address: {
...form.address,
[e.target.name]: e.target.value
}
});
};
// [보내기] 버튼 클릭으로 폼 정보 로그 출력
const show = () => {
console.log(`${form.name}${form.address.do}${form.address.city}`);
};
return (
<form>
<div>
<label htmlFor="name">이름:</label>
<input id="name" name="name" type="text"
onChange={handleForm} value={form.name} />
</div>
<div>
<label htmlFor="do">주소():</label>
<input id="do" name="do" type="text"
onChange={handleFormNest} value={form.address.do} />
</div>
<div>
<label htmlFor="city">주소(//):</label>
<input id="city" name="city" type="text"
onChange={handleFormNest} value={form.address.city} />
</div>
<div>
<button type="button" onClick={show}>
보내기</button>
</div>
</form>
);
}