mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2026-02-18 00:41:46 +01:00
14 lines
271 B
Svelte
14 lines
271 B
Svelte
<!--
|
|
@component Support settings wrapper
|
|
-->
|
|
|
|
<script>
|
|
import { getContext } from "svelte";
|
|
import SupportOptions from "./support/SupportOptions.svelte";
|
|
|
|
/* Const Init */
|
|
const ccconfig = getContext("cc-config");
|
|
</script>
|
|
|
|
<SupportOptions config={ccconfig}/>
|