You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

13 line
310 B

  1. import * as React from 'react';
  2. import { BsPrefixRefForwardingComponent } from './helpers';
  3. export interface FormGroupProps {
  4. controlId?: string;
  5. }
  6. declare interface FormGroup
  7. extends BsPrefixRefForwardingComponent<'div', FormGroupProps> {}
  8. declare const FormGroup: FormGroup;
  9. export default FormGroup;