import React, { findDOMNode, Component, PropTypes } from 'react';
이런식으로 findDOMNode 를 한 뒤 참조를 아래처럼 설정할 경우 오류가 날 것이다.
const node = findDOMNode(this.refs.input);
리액트 버전 15(일부 제외)부터는 findDOMNode를 쓰지 않고 바로 ref를 사용해도 된다.
const node = this.refs.input;
바로 사용해도 된다.