ref
When a React component mounts, it adds the component as a new node in the DOM tree.
With the ref property, React sets a reference to the underlying node object. This is the node React rendered for that component.
We can run functions on that node object when necessary.