@react-formgen/json-schema
Version:
A headless, type-safe, customizable, and super simple React form generator.
9 lines (8 loc) • 330 B
TypeScript
import React from "react";
import { RenderTemplateProps } from "./types";
/**
* Render a template based on the schema type.
* @param {RenderTemplateProps} props - The props for the RenderTemplate.
* @returns {JSX.Element} The rendered template component.
*/
export declare const RenderTemplate: React.FC<RenderTemplateProps>;