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.

10 lines (7 loc) 308 B
import { compose } from 'redux'; import { withPlugins } from '../extend/withPlugins'; import { WorkspaceControlPanelButtons } from '../components/WorkspaceControlPanelButtons'; const enhance = compose( withPlugins('WorkspaceControlPanelButtons'), ); export default enhance(WorkspaceControlPanelButtons);