UNPKG

mirador

Version:

An open-source, web-based 'multi-up' viewer that supports zoom-pan-rotate functionality, ability to display/compare simple images, and images with annotations.

11 lines (8 loc) 269 B
import { compose } from 'redux'; import { withPlugins } from '../extend/withPlugins'; import { WindowViewer } from '../components/WindowViewer'; const enhance = compose( withPlugins('WindowViewer'), // further HOC go here ); export default enhance(WindowViewer);