@intersect.mbo/govtool-delegation-pillar
Version:
Delegation Pillar of the GovTool project
15 lines (14 loc) • 445 B
TypeScript
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';