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

7 lines
171 B
JavaScript

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