mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2024-12-27 21:59:05 +01:00
14 lines
304 B
JavaScript
14 lines
304 B
JavaScript
|
import {} from './header.entrypoint.js'
|
||
|
import List from './List.root.svelte'
|
||
|
|
||
|
new List({
|
||
|
target: document.getElementById('svelte-app'),
|
||
|
props: {
|
||
|
filterPresets: filterPresets,
|
||
|
type: listType,
|
||
|
},
|
||
|
context: new Map([
|
||
|
['cc-config', clusterCockpitConfig]
|
||
|
])
|
||
|
})
|