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.
9 lines (6 loc) • 339 B
JavaScript
import { compose } from 'redux';
import { connect } from 'react-redux';
import { withPlugins } from '../extend/withPlugins';
import { WindowTopBarPluginArea } from '../components/WindowTopBarPluginArea';
const enhance = compose(connect(null, null), withPlugins('WindowTopBarPluginArea'));
export default enhance(WindowTopBarPluginArea);