Reading: Dynamic Forms - jacobwendt-401-advanced-javascript/cr-js-401d3 GitHub Wiki

Reading: Dynamic Forms

Form elements work different within React than HTML.

  • Form data, is usually handled by the component rather than the DOM
  • Each input element gets a component of its own, which are called dumb components

2 different techniques to create a form:

  1. Controlled Component
  2. Uncontrolled Component