Controlled Vs Uncontrolled Components
1. In terms of form element
Controlled Component
A form element whose value is fully managed by the React itself is controlled element.
<input value={name} onChange={e => setName(e.target.value)} />
As one can see, the input value is in sync with Re...
neeltyper001react.hashnode.dev1 min read