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.

13 lines (12 loc) 312 B
import React from "react"; export declare type ActionType = { icon: React.ReactNode; label: string; onClick: () => void; }; declare type ToolBoxProps = { formElementId: string; actions?: ActionType[]; }; export declare const FormElementToolbox: React.FC<ToolBoxProps>; export {};