react-book icon indicating copy to clipboard operation
react-book copied to clipboard

String refs are considered obsolete

Open quasiyoke opened this issue 7 years ago • 0 comments

There's an example of string refs in the book but official documentation is considering them as obsolete feature.

Instead of:

<input type="text" ref="input" />

We should write:

<input type="text" ref={el => this.input = el} />

quasiyoke avatar Dec 17 '17 00:12 quasiyoke