from the docs
class MyComponent extends React.Component {
constructor(props) {
super(props);
this.myRef = React.createRef();
}
render() {
return <div ref={this.myRef} />;
}
}
my question is will this.myRef.current
refer to the actual DOM node or to the react virtual DOM's node?