Uncontrolled Components
Strengthen your knowledge of uncontrolled components and see them in action.
We'll cover the following...
Understanding uncontrolled components
Uncontrolled components can take two different forms. First, plain form elements can be rendered, which are processed server-side and do not interact with React at any time. The form is completely static, so to say. React does not intervene if this is what is desired and allows the developer to freely choose an approach.
But ...