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.
13 lines (12 loc) • 458 B
TypeScript
/// <reference types="react" />
import type { ThemeOptions } from '@material-ui/core';
import type { FormSchemaType } from '../store/store';
import type { FormElement } from '../model';
declare type FormArchitectProps = {
onSave: (formData: FormSchemaType) => void;
theme?: ThemeOptions;
formElements?: FormElement[];
children?: never;
};
export declare const FormArchitect: (props: FormArchitectProps) => JSX.Element;
export {};