Type Alias FormProps<T>

FormProps<T>: Omit<ColProps, "onSubmit" | "onChange"> & {
    inputs: T;
    onChange?: ((result: FormResult<T>) => void);
    onSubmit: ((result: FormResult<T>) => any);
    SubmitProps?: {
        ButtonProps?: ButtonProps;
        WrapperProps?: RowProps;
    };
}

Type Parameters