TextArea
The <TextArea> component renders a <textarea> element where the value prop is bound and which includes
all of Formula’s required handlers.
Sample usage
Section titled “Sample usage”const form = useForm({ initialValues: { content: "" }});return ( <TextArea field={form("content")} />)function TextArea(props: { // The field to associate with this textarea field: FormField<string>} & Omit<DefaultInputProps, "value">)Native props
Section titled “Native props”<TextArea> supports all props of the native <textarea>, except for value which is bound automatically.