webscopeio / react-textarea-autocomplete

📝 React component implements configurable GitHub's like textarea autocomplete.
MIT License
454 stars 80 forks source link

feat: innerRef prop to get Ref to textarea #69

Closed jukben closed 6 years ago

jukben commented 6 years ago

Now you can easily get Ref of underlying textarea.

The other approach is to access to this.rtaRef.textareaRef but innerRef={(ref) => {this.textareaRef = ref}} is now preffered.