Controlled vs Uncontrolled components in react
Controlled Component
A controlled component is a form element whose value is managed by React state. The input value is passed via the value prop, and updates happen through an onChange handler.
Uncontrolled Component
An uncontrolled component is ...
bikash8848.hashnode.dev1 min read