상태를 가지고 있는 엘리먼트 input, select, textarea ... 엘리먼트의 상태를 관리 엘리먼트를 가지고 있는 컴포넌트가 관리 controlled 엘리먼트의 상태를 관리하지 않고, 엘리먼트의 참조만 컴포넌트가 소유 Uncontrolled controlled component import React from 'react'; class ControlledComponent extends React.Component { state = { value:"", }; render() { const { value}=this.state; return ( ); } change = (e) => { console.log(e.target.value); this.setState({value:e.target.value..