cc-backend/web/frontend/src/list.entrypoint.js

14 lines
304 B
JavaScript
Raw Normal View History

2022-06-22 11:20:57 +02:00
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]
])
})