I\'m using Typescript with React. I\'m having trouble understanding how to use refs so as to get static typing and intellisense with respect to the react nodes referenced by
I always do this, in that case to grab a ref
let input: HTMLInputElement = ReactDOM.findDOMNode(this.refs.input);