import React from "react";
import { FormControl, FormControlProps } from "react-compose-form";
import { InputField, TextFieldProps } from "@/components/form/field/input.field";

export type InputControlProps = FormControlProps<TextFieldProps>;

export const InputControl: React.FC<InputControlProps> = (props) => {
    return (
        <FormControl
          {...props}
          as={InputField} />
    );
};
