Docs
API Reference
Textarea

Textarea

Render a textarea input. Extends Base.

Interactive Demo
Example

Hello, world

const config = {
  components: {
    Example: {
      fields: {
        description: {
          type: "textarea",
        },
      },
      render: ({ description }) => {
        return <p>{description}</p>;
      },
    },
  },
};

Params

ParamExampleTypeStatus
typetype: "textarea""textarea"Required

Required params

type

The type of the field. Must be "textarea" for Textarea fields.

const config = {
  components: {
    Example: {
      fields: {
        description: {
          type: "textarea",
        },
      },
      // ...
    },
  },
};