mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
9 lines
293 B
JavaScript
9 lines
293 B
JavaScript
|
import createWithBsPrefix from './createWithBsPrefix';
|
||
|
import FigureImage from './FigureImage';
|
||
|
import FigureCaption from './FigureCaption';
|
||
|
var Figure = createWithBsPrefix('figure', {
|
||
|
Component: 'figure'
|
||
|
});
|
||
|
Figure.Image = FigureImage;
|
||
|
Figure.Caption = FigureCaption;
|
||
|
export default Figure;
|