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) 305 B
import { compose } from 'redux'; import { withPlugins } from '../extend/withPlugins'; import { WorkspaceControlPanel } from '../components/WorkspaceControlPanel'; const enhance = compose( withPlugins('WorkspaceControlPanel'), // further HOC go here ); export default enhance(WorkspaceControlPanel);