Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
12345678910111213 |
- import * as React from 'react';
-
- import { BsPrefixComponent } from './helpers';
-
- export interface ContainerProps {
- fluid?: boolean;
- }
-
- declare class Container<
- As extends React.ElementType = 'div'
- > extends BsPrefixComponent<As, ContainerProps> {}
-
- export default Container;
|