mirror of
https://github.com/getredash/redash.git
synced 2025-12-19 17:37:19 -05:00
7 lines
183 B
JavaScript
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} />;
|
|
}
|