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.
 
 
 
 

9 lines
293 B

  1. import createWithBsPrefix from './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;