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.
10 lines (9 loc) • 336 B
TypeScript
/// <reference types="react" />
import type { FieldValues } from 'react-hook-form';
import type { FormSchemaType } from '../store/store';
declare type Props = {
data: FormSchemaType;
onSubmit: (data: FieldValues) => void;
};
export declare const FormRendererForm: ({ data, onSubmit }: Props) => JSX.Element;
export {};