mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 00:47:38 -06:00
1373b37166
* cleanup tests * more cleanup * added links * test legacy hooks * test legacy hooks * update codeowners * revert package changes * add project specfic example script * remove console log * Update .github/CODEOWNERS Co-authored-by: Timur Olzhabayev <timur.olzhabayev@grafana.com> * Update CODEOWNERS * use correct file names * cleanup tests --------- Co-authored-by: Timur Olzhabayev <timur.olzhabayev@grafana.com>
12 lines
301 B
TypeScript
12 lines
301 B
TypeScript
import pluginJson from './plugin.json';
|
|
|
|
export const PLUGIN_BASE_URL = `/a/${pluginJson.id}`;
|
|
|
|
export enum ROUTES {
|
|
LegacyGetters = 'legacy-getters',
|
|
LegacyHooks = 'legacy-hooks',
|
|
ExposedComponents = 'exposed-components',
|
|
AddedComponents = 'added-components',
|
|
AddedLinks = 'added-links',
|
|
}
|