Text Area
A text area is a multi-line text input field.
Basic Example
The text area component can be controlled by a single value. The on_blur
prop can be used to update the value when the text area loses focus.
Hello World!
Text Area in forms
Here we show how to use a text area in a form. We use the name
prop to identify the text area in the form data. The form data is then passed to the submit_feedback
method to be processed.