react-fblibrary
Version:
FBLibrary é uma biblioteca autoral que reúne componentes e bases fundamentais para desenvolvimento eficiente. Nosso objetivo é criar um ecossistema de componentes, desde elementos simples, como inputs e botões, até layouts completos, que podem ser reutili
13 lines (12 loc) • 675 B
TypeScript
import { FormInstance } from 'antd/lib/form';
import { Field } from '../components/baseLayouts/modals/types';
/**
* Renders the fields based on the provided parameters.
*
* @param {Field} field - The field object to render.
* @param {number} index - The index of the field.
* @param {FormInstance} form - The instance of the form.
* @param {(value: any, fieldName: string) => void} setFieldValues - The function to set field values.
* @return {JSX.Element} The rendered fields.
*/
export declare const renderfields: (field: Field, index: number, form: FormInstance, setFieldValues: (value: any, fieldName: string) => void) => import("react/jsx-runtime").JSX.Element;