UNPKG

@tomino/dynamic-form-semantic-ui

Version:

Semantic UI form renderer based on dynamic form generation

15 lines (14 loc) 406 B
import React from 'react'; import { FormElement } from '@tomino/dynamic-form'; import { EditorContextType } from './editor_context'; declare type Props = { showTopMenu: boolean; fileOperations?: boolean; allowSave?: boolean; context: EditorContextType; }; export declare class FormEditor extends React.Component<Props> { elements: FormElement[]; render(): JSX.Element; } export {};