@open-formulieren/formio-builder
Version:
An opinionated Formio webform builder for Open Forms
17 lines (16 loc) • 527 B
TypeScript
import { NormalizedComponentConfiguration } from '../types';
interface ComponentsGroupProps {
testId: string;
isSearching?: boolean;
isDefault?: boolean;
title: React.ReactNode;
componentConfigurations: NormalizedComponentConfiguration[];
}
/**
* Component for rendering a group of components.
*
* This component is responsible for rendering a group of components and (future)
* drag-and-drop behaviour.
*/
declare const ComponentsGroup: React.FC<ComponentsGroupProps>;
export default ComponentsGroup;