client/app/components/dynamic-form/fields/InputField.jsx (
5
lines of code) (
raw
):
import React from "react"; import Input from "antd/lib/input"; export default function InputField({ form, field, ...otherProps }) { return <Input {...otherProps} />; }