Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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;