import React from "react";
import { FormControl, FormControlProps } from "react-compose-form";
import { ProfileField, ProfileFieldProps } from "@/components/form/field/profile.field";

export type ProfileControlProps = FormControlProps<ProfileFieldProps>;

export const ProfileControl: React.FC<ProfileControlProps> = (props) => {
    return (
        <FormControl
          {...props}
          as={ProfileField} />
    );
};
