class MyComponent extends React.Component { // highlight-next-line divRef = React.createRef(); render() { // highlight-next-line return ; } componentDidMount() { // highlight-next-line this.divRef.value.focus(); } }