Introduction

Let's take a look at how to access the DOM elements directly.

We'll cover the following...

What are Refs?

Refs allow us to directly access DOM elements that were created during the render process. ven if this is unnecessary in most cases, it can be useful in a few situations where it is unavoidable. Examples are calculating the position or size of an element to display a tooltip based on ...