Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

FormGroup.d.ts 317B

12345678910111213
  1. import * as React from 'react';
  2. import { BsPrefixComponent } from './helpers';
  3. export interface FormGroupProps {
  4. innerRef?: React.LegacyRef<this>;
  5. controlId?: string;
  6. }
  7. declare class FormGroup<
  8. As extends React.ElementType = 'div'
  9. > extends BsPrefixComponent<As, FormGroupProps> {}
  10. export default FormGroup;