폼(Form) React form(공식문서) HTML 폼 엘리먼트는 폼 엘리먼트 자체가 내부 상태를 가지기 때문에,(= 인풋에 value를 따로 주지 않아도 그 자체로 입력된 값을 알고 있음) React의 다른 DOM 엘리먼트와 다르게 동작한다. 순수한 HTML에서 이 폼은 name을 입력받는다. 제어 컴포넌트 (Controlled Component) class NameForm extends React.Component { constructor(props) { super(props); this.state = {value: ''}; // value는 빈값 this.handleChange = this.handleChange.bind(this); this.handleSubmit = this.handleSubm..