Files
cc-backend/web/frontend/src/status.entrypoint.js
2025-08-13 14:22:24 +02:00

14 lines
321 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,
},
context: new Map([
['cc-config', clusterCockpitConfig]
])
})