Dashboard sipadu mbip
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

12345678910111213
  1. import * as React from 'react';
  2. import { BsPrefixComponent } from './helpers';
  3. export interface ContainerProps {
  4. fluid?: boolean;
  5. }
  6. declare class Container<
  7. As extends React.ElementType = 'div'
  8. > extends BsPrefixComponent<As, ContainerProps> {}
  9. export default Container;