Files
iD/modules/ui/panels/index.js
2017-07-04 01:18:45 -04:00

17 lines
473 B
JavaScript

export * from './background';
export * from './history';
export * from './location';
export * from './measurement';
import { uiPanelBackground } from './background';
import { uiPanelHistory } from './history';
import { uiPanelLocation } from './location';
import { uiPanelMeasurement } from './measurement';
export var uiInfoPanels = {
background: uiPanelBackground,
history: uiPanelHistory,
location: uiPanelLocation,
measurement: uiPanelMeasurement,
};