mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 03:16:01 +00:00
9 lines
145 B
Svelte
9 lines
145 B
Svelte
<script lang="ts">
|
|
export let component;
|
|
export let data;
|
|
|
|
let isExpanded = false;
|
|
</script>
|
|
|
|
<svelte:component this={component} {data} />
|