mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2025-10-03 05:04:30 +02:00
18 lines
446 B
JavaScript
18 lines
446 B
JavaScript
import {} from './header.entrypoint.js'
|
|
import Systems from './Systems.root.svelte'
|
|
|
|
new Systems({
|
|
target: document.getElementById('svelte-app'),
|
|
props: {
|
|
displayType: displayType,
|
|
cluster: infos.cluster,
|
|
subCluster: infos.subCluster,
|
|
from: infos.from,
|
|
to: infos.to
|
|
},
|
|
context: new Map([
|
|
['cc-config', clusterCockpitConfig],
|
|
['resampling', resampleConfig]
|
|
])
|
|
})
|