Files
cc-backend/web/frontend/src/status.entrypoint.js
Christoph Kluge 4083de2a51 Add public dashboard and route, add DoubleMetricPlot and GQL queries
- add roofline legend display switch
- small fixes
2025-12-09 10:26:55 +01:00

15 lines
355 B
JavaScript

import { mount } from 'svelte';
import {} from './header.entrypoint.js'
import Status from './Status.root.svelte'
mount(Status, {
target: document.getElementById('svelte-app'),
props: {
presetCluster: infos.cluster,
displayType: displayType,
},
context: new Map([
['cc-config', clusterCockpitConfig]
])
})