rsuite
Version:
A suite of react components
19 lines (18 loc) • 439 B
TypeScript
export declare const useFormGroup: (controlId?: string) => {
/**
* The `id` of the `<Form.Control>` component.
*/
controlId: string;
/**
* The `id` of the `<Form.HelpText>` component.
*/
helpTextId: string;
/**
* The `id` of the `<Form.ControlLabel>` component.
*/
labelId: string;
/**
* The `id` of the `<Form.ErrorMessage>` component.
*/
errorMessageId: string;
};