mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-20 05:26:00 +00:00
8 lines
188 B
Svelte
8 lines
188 B
Svelte
<script>
|
|
import { openedModals } from '../stores';
|
|
</script>
|
|
|
|
{#each $openedModals as { component, props, modalId }}
|
|
<svelte:component this={component} {modalId} {...props} />
|
|
{/each}
|