mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2024-11-10 08:57:25 +01:00
15 lines
330 B
JavaScript
15 lines
330 B
JavaScript
|
import {} from './header.entrypoint.js'
|
||
|
import Systems from './Systems.root.svelte'
|
||
|
|
||
|
new Systems({
|
||
|
target: document.getElementById('svelte-app'),
|
||
|
props: {
|
||
|
cluster: infos.cluster,
|
||
|
from: infos.from,
|
||
|
to: infos.to
|
||
|
},
|
||
|
context: new Map([
|
||
|
['cc-config', clusterCockpitConfig]
|
||
|
])
|
||
|
})
|