Files
redash/client/app/components/dynamic-form/fields/TextAreaField.jsx
2020-08-25 14:24:15 -03:00

7 lines
183 B
JavaScript

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