...

/

Creating strongly-typed refs in class components

Creating strongly-typed refs in class components

In this lesson, we learn how to get a strongly-typed reference to an element in a class component.

Understanding createRef #

In this lesson, we are going to implement the Search component we implemented in the last lesson as a class component. Below is a first attempt:

class Search extends React.Component {
  private input =
...