Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

FormGroup.d.ts 310 B

3 lat temu
123456789101112
  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;