client/app/components/dynamic-form/fields/TextAreaField.jsx (5 lines of code) (raw):

import React from "react"; import Input from "antd/lib/input"; export default function TextAreaField({ form, field, ...otherProps }) { return <Input.TextArea {...otherProps} />; }