cc-backend/web/frontend/src/systems.entrypoint.js
2025-06-12 16:23:31 +02:00

19 lines
493 B
JavaScript

import { mount } from 'svelte';
import {} from './header.entrypoint.js'
import Systems from './Systems.root.svelte'
mount(Systems, {
target: document.getElementById('svelte-app'),
props: {
displayType: displayType,
cluster: infos.cluster,
subCluster: infos.subCluster,
fromPreset: infos.from,
toPreset: infos.to
},
context: new Map([
['cc-config', clusterCockpitConfig],
['resampling', resampleConfig]
])
})