Uncontrolled Components

A Uncontrolled Component is one that stores its own state internally, and you query the DOM using a ref to find its current value when you need it. This is a bit more like traditional HTML.

The Uncontrolled Components:
– store its own state
– you query the DOM using a ref to find its current value when you need it.

In the below UserProfile component, the name input is accessed using ref.