There's an [example of string refs](https://github.com/survivejs/react-book/blob/dev/manuscript/getting_started/05_understanding_react_components.md#refs) in the book but official documentation [is considering](https://reactjs.org/docs/refs-and-the-dom.html#legacy-api-string-refs) them as obsolete feature. Instead of: ```jsx <input type="text" ref="input" /> ``` We should write: ```jsx <input type="text" ref={el => this.input = el} /> ```