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.

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;