이벤트 핸들링이란?- 웹에서 이벤트가 발생했을 때 그것을 처리하는 것- 웹에서 발생하는 사용자들의 행동을 처리해주는 것이라고 볼 수 있다.ex) 버튼 클릭시 경고창 노출 const Button = ({text, color, children}) => { return( { console.log(text); }} style = {{ color: color }} > {text} - {color.toUpperCase()} {children} ); Button.defaultProps = { color: ..