mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-14 17:52:55 +00:00
17 lines
473 B
JavaScript
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,
|
|
};
|