What are uncontrolled components?

  • Components that are managed by React and cannot be updated directly
  • Components that are updated using refs
  • Components that are updated using the setState() method
  • Components that store their own state
Uncontrolled components are components that store their own state and are updated using refs. They are often used for simple form inputs, where managing the state in a parent component would be unnecessary overhead.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *