import React from "react";
import { FormControl, FormControlProps } from "react-compose-form";
import { CheckboxField, CheckboxFieldProps } from "@/components/form/field/checkbox.field";

export type CheckboxControlProps = FormControlProps<CheckboxFieldProps>;

export const CheckboxControl: React.FC<CheckboxControlProps> = (props) => {
    return (
        <FormControl
          {...props}
          as={CheckboxField} />
    );
};
