1 changed files with 3 additions and 3 deletions
@ -1,14 +1,14 @@ |
|||||
class MyComponent extends React.Component { |
class MyComponent extends React.Component { |
||||
// highlight-next-line
|
// highlight-next-line
|
||||
divRef = React.createRef(); |
inputRef = React.createRef(); |
||||
|
|
||||
render() { |
render() { |
||||
// highlight-next-line
|
// highlight-next-line
|
||||
return <input type="text" ref={this.divRef} />; |
return <input type="text" ref={this.inputRef} />; |
||||
} |
} |
||||
|
|
||||
componentDidMount() { |
componentDidMount() { |
||||
// highlight-next-line
|
// highlight-next-line
|
||||
this.divRef.current.focus(); |
this.inputRef.current.focus(); |
||||
} |
} |
||||
} |
} |
||||
|
Loading…
Reference in new issue