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.
22 lines (19 loc) • 603 B
JavaScript
import * as actions from './actions';
import * as reducers from './reducers';
import * as sagas from './sagas';
import * as selectors from './selectors';
import createStore from './createStore';
export default {
actions,
createStore,
reducers,
sagas,
selectors,
};
export * from './actions';
export * from './reducers';
export { default as rootReducer } from './reducers/rootReducer';
export { default as rootSaga } from './sagas';
export * from './selectors';
export { default as createStore } from './createStore';
export { default as createPluggableStore } from './createPluggableStore';