Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

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