rfa
Version:
**React Form Architect** is an ultimate solution for creating and rendering forms in React. Its main focus is to provide users with a tool to define, render and share a form in a browser.
11 lines (10 loc) • 369 B
TypeScript
/// <reference types="react" />
import { FormStoredElementType } from '../store/store';
import { useForm } from 'react-hook-form';
declare type Props = {
element: FormStoredElementType;
index: number;
formContextRegistration: Partial<ReturnType<typeof useForm>>;
};
export declare const FormBuildElement: (props: Props) => JSX.Element;
export {};