Promptles
React & Frontend

Controlled Component

intermediate

Definition

A form field, a text box, a checkbox, a dropdown, whose value is being watched and managed by the rest of the app, rather than just floating freely on the page. The app always knows exactly what's typed in, character by character.

In the wild

On a sign-up form, the email field is a controlled component. The moment you type a letter, the app sees it and can react: for example, instantly showing a green check if the email looks valid, or a red warning if it doesn't.

More from React & Frontend