UNPKG

@tomino/dynamic-form-semantic-ui

Version:

Semantic UI form renderer based on dynamic form generation

12 lines (11 loc) 325 B
import * as React from 'react'; import { FormViewProps, FormElement } from '@tomino/dynamic-form'; export interface IFieldOwner { elements?: FormElement[]; } declare type Props = { className?: string; onCreate?: string; }; export declare const FormView: React.FunctionComponent<FormViewProps & Props>; export {};