mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 06:49:15 +01:00
13 lines
310 B
TypeScript
13 lines
310 B
TypeScript
import * as React from 'react';
|
|
import { BsPrefixRefForwardingComponent } from './helpers';
|
|
|
|
export interface FormGroupProps {
|
|
controlId?: string;
|
|
}
|
|
|
|
declare interface FormGroup
|
|
extends BsPrefixRefForwardingComponent<'div', FormGroupProps> {}
|
|
|
|
declare const FormGroup: FormGroup;
|
|
export default FormGroup;
|