@open-formulieren/formio-builder
Version:
An opinionated Formio webform builder for Open Forms
13 lines (12 loc) • 528 B
TypeScript
/// <reference types="react" />
import { CheckboxComponentSchema } from '@open-formulieren/types';
import { ComponentPreviewProps } from '../types';
/**
* Show a formio checkbox component preview.
*
* NOTE: for the time being, this is rendered in the default Formio bootstrap style,
* however at some point this should use the components of
* @open-formulieren/formio-renderer instead for a more accurate preview.
*/
declare const Preview: React.FC<ComponentPreviewProps<CheckboxComponentSchema>>;
export default Preview;