@ezform/mui
Version:
Material UI form components for use with EZForm React validation and form library
15 lines (14 loc) • 381 B
TypeScript
import { FormRefObject } from "@ezform/core";
interface FieldListProps {
form: FormRefObject;
name: string;
renderRow: (props: {
add: () => () => void;
remove: (index: number) => () => void;
index: number;
total: number;
}) => any;
extraRows?: number;
}
export declare const FieldList: (props: FieldListProps) => any;
export {};