Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

13 rader
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;