× logo Home HTML CSS Javascript React-App Angular.js logo
logo

React Controlled Vs Uncontrolled components

What are controlled and uncontrolled components in React?
This relates to stateful DOM components (form elements) and the difference:
A Controlled Component is one that takes its current value through props and notifies changes through callbacks like onChange. A parent component "controls" it by handling the callback and managing its own state and passing the new values as props to the controlled component. You could also call this a "dumb component".
// Controlled:


A Uncontrolled Component is one that stores its own state internally, and you query the DOM using a ref to find its current value when you need it. This is a bit more like traditional HTML. In most (or all) cases we should use controlled components.
// Uncontrolled:

// Use `inputRef.current.value` to read the current value of input

logo

logo