UNPKG

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.

8 lines (7 loc) 257 B
/// <reference types="react" /> import { FormSchemaType } from '../store/store'; declare type Props = { onSave: (formScheme: FormSchemaType) => void; }; export declare const FormArchitectSaveButton: ({ onSave }: Props) => JSX.Element; export {};