Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
legend.constants.ts 305 B
import { LegendState } from './legend.types';

export const DEFAULT_LEGEND_ID = 'MAIN';

export const LEGEND_INITIAL_STATE: LegendState = {
  isOpen: false,
  pluginLegend: {},
  activeLegendId: DEFAULT_LEGEND_ID,
};

export const DEFAULT_LEGEND_TAB = {
  name: 'Main Legend',
  id: DEFAULT_LEGEND_ID,
};