How to set focus on an input field after rendering in ReactJS ? code example
Example: How to set focus on an input field after rendering?
componentDidMount(){
this.nameInput.focus();
}
componentDidMount(){
this.nameInput.focus();
}