mui-custom-form
Version:
A versatile React form component utilizing MUI components and react-hook-form.
6 lines (5 loc) • 348 B
TypeScript
import React from "react";
import { FieldValues } from "react-hook-form";
import { ICustomForm } from "./types";
export declare const CustomForm: <T extends FieldValues>({ fieldsGroups, onSubmit, formControl, submitButton, resetButton, actionButtonsPlacement, layout, otherProps, }: ICustomForm<T>) => React.JSX.Element;
export default CustomForm;