React Form Demo Using Controlled Components

Controlled Components vs Uncontrolled Components

  • Controlled Components manage state using react local state. (recommended)
  • Uncontrolled Components manage state using a reference to the DOM node.

Getting Started

  • clone repo
  • npm install
  • npm start
  • open localhost:3000

demo