html ref code example
Example 1: cre&atRefs react js
const node = this.myRef.current;
Example 2: react ref
class MyComponent extends React.Component {
constructor(props) {
super(props);
this.myRef = React.createRef(); }
render() {
return ; }
}