이벤트 핸들러의 React 구성 요소에 대한 참조 가져오기 이벤트 핸들러를 React 컴포넌트에 연결할 수 있습니다.이벤트 핸들러 내부에서 이 컴포넌트를 참조할 수 있는 방법이 있습니까? var Foobar = React.createClass({ action: function () { // ... }, render: function () { var child = React.Children.only(this.props.children), props = _.omit(this.props, 'children'); return React.addons.cloneWithProps(child, props); } }); var App = React.createClass({ handleMouseEnter: function..