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:
- Controlled Component
- Uncontrolled Component