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.

9 lines (8 loc) 295 B
/// <reference types="react" /> import { TypographyProps } from "@material-ui/core"; declare type TreeNodeTitleProps = { editMode?: false; label: string; } & TypographyProps; export declare const TreeNodeTitle: ({ label, ...rest }: TreeNodeTitleProps) => JSX.Element; export {};