All files / src lib.js

100% Statements 2/2
100% Branches 0/0
100% Functions 0/0
100% Lines 2/2
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37                                      1x   1x                              
/**
* Copyright 2018, Plotly, Inc.
* All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
 
import msaConnect from './store/connect'
import createMSAStore from './store/createMSAStore';
import MSAProvider from './store/provider';
import withPositionStore from './store/withPositionStore';
 
import ColorScheme from './utils/ColorScheme';
import MSAViewer from './components/MSAViewer';
 
import mainStoreActions from './store/actions';
import { actions as positionStoreActions } from './store/positionReducers';
 
const VERSION = "MSA_DEVELOPMENT_VERSION";
 
const actions = {...mainStoreActions, ...positionStoreActions};
 
export * from './components';
export {
  actions,
  ColorScheme,
  createMSAStore,
  msaConnect,
  MSAProvider,
  MSAViewer,
  withPositionStore,
  VERSION as version,
};
 
export default MSAViewer;