UNPKG

dynamic-modal

Version:

The dynamic-modal is a solution of creation different modals into project using a json configuration file

16 lines (12 loc) 359 B
import { CSSProperties } from 'react'; import { IFieldProps } from './field'; import { IModalField } from './modal'; export interface IMakeFieldGroup { elementType: 'group'; groups: Array<IModalField>; style?: CSSProperties; title?: string; } export interface IMakeFieldGroupProps extends IFieldProps { element: IMakeFieldGroup; }