React 16.3 has been released and there have been a few changes which can be seen in the CHANGELOG.md. One of those changes is a way to access DOM refs.
We now have a new way of accessing refs, instead of the previous callback function. Per React’s docs, this is how it is done:
class MyComponent extends React.Component {
constructor(props) {
super(props);
this.myRef = React.createRef();
}
render() {
return <div ref={this.myRef} />;
}
}