react.js의 인스턴스 v 상태 변수 react.js에는 타임아웃 참조를 인스턴스 변수(this.timeout)와 상태 변수(this.state.timeout) 중 어느 것으로 저장하는 것이 좋습니까? React.createClass({ handleEnter: function () { // Open a new one after a delay var self = this; this.timeout = setTimeout(function () { self.openWidget(); }, DELAY); }, handleLeave: function () { // Clear the timeout for opening the widget clearTimeout(this.timeout); } ... }) 또는 Rea..