mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2025-04-03 18:55:55 +02:00
14 lines
276 B
Svelte
14 lines
276 B
Svelte
<!--
|
|
@component Support settings wrapper
|
|
Properties: None
|
|
-->
|
|
|
|
<script>
|
|
import { getContext } from "svelte";
|
|
import SupportOptions from "./support/SupportOptions.svelte";
|
|
|
|
const ccconfig = getContext("cc-config");
|
|
</script>
|
|
|
|
<SupportOptions config={ccconfig}/>
|