UNPKG

@intersect.mbo/govtool-delegation-pillar

Version:
15 lines (14 loc) 445 B
import React, { PropsWithChildren } from 'react'; import { Checkbox } from './Checkbox'; import { Input } from './Input'; import { TextArea } from './TextArea'; type FieldComposition = React.FC<PropsWithChildren> & { Input: typeof Input; Checkbox: typeof Checkbox; TextArea: typeof TextArea; }; declare const Field: FieldComposition; export { Field }; export * from './Checkbox'; export * from './Input'; export * from './TextArea';