UNPKG

484 BJavaScriptView Raw
1import "./image-viewer.css";
2import { attachPropertiesToComponent } from '../../utils/attach-properties-to-component';
3import { ImageViewer, MultiImageViewer } from './image-viewer';
4import { showMultiImageViewer, showImageViewer, clearImageViewer } from './methods';
5const Multi = attachPropertiesToComponent(MultiImageViewer, {
6 show: showMultiImageViewer
7});
8export default attachPropertiesToComponent(ImageViewer, {
9 Multi,
10 show: showImageViewer,
11 clear: clearImageViewer
12});
\No newline at end of file