Dashboard sipadu mbip
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

Figure.js 299B

123456789
  1. import createWithBsPrefix from './utils/createWithBsPrefix';
  2. import FigureImage from './FigureImage';
  3. import FigureCaption from './FigureCaption';
  4. var Figure = createWithBsPrefix('figure', {
  5. Component: 'figure'
  6. });
  7. Figure.Image = FigureImage;
  8. Figure.Caption = FigureCaption;
  9. export default Figure;