class MyComponent extends React.Component { constructor(props) { super(props); // highlight-next-line this.inputRef = React.createRef(); } render() { // highlight-next-line return ; } componentDidMount() { // highlight-next-line this.inputRef.current.focus(); } }