--- title: "` is not allowed. [Use `defaultValue` for initial content.](#providing-an-initial-value-for-a-text-area) - If a text area receives a string `value` prop, it will be [treated as controlled.](#controlling-a-text-area-with-a-state-variable) - A text area can't be both controlled and uncontrolled at the same time. - A text area cannot switch between being controlled or uncontrolled over its lifetime. - Every controlled text area needs an `onChange` event handler that synchronously updates its backing value. --- ## Usage사용법 {/*usage*/} ### Displaying a text area {/*displaying-a-text-area*/} Render `` is not supported. --- ### Reading the text area value when submitting a form {/*reading-the-text-area-value-when-submitting-a-form*/} Add a [`
`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form) around your textarea with a [`