Запитання 7
What is the difference between controlled and uncontrolled React components?
Варіанти відповідей
Controlled components have their value driven by React state; uncontrolled components manage their own state via the DOM.
Controlled components are only class-based; uncontrolled components are functional.
Controlled components don’t handle events; uncontrolled components handle all user inputs.
Controlled components lack validation; uncontrolled components have built-in form validation.