Files
online-energieausweis/src/components/NotificationProvider/NotificationProvider.svelte
2025-02-04 10:00:18 +07:00

9 lines
275 B
Svelte

<script lang="ts">
import { notifications } from "./shared.js"
export let component: ConstructorOfATypedSvelteComponent;
</script>
{#each Object.entries($notifications) as [key, notification]}
<svelte:component this={component} {notification}></svelte:component>
{/each}