semantic UI react focus on input code example
Example: semantic UI react focus on input
class InputExampleRefFocus extends Component {
handleRef = (c) => {
this.inputRef = c
}
focus = () => {
this.inputRef.focus()
}
render() {
return (
)
}
}