<script>
import {NotificationService} from "@dflare/svelte-enhanced-notifications";
import CustomNotification from "./CustomNotification.svelte";
let notficationService;
let myNotification1 = {
component: CustomNotification,
title: "Success notification",
message: "This is a notification",
variant: "success"
};
let myNotification2 = {
component: CustomNotification,
title: "Success notification",
message: "This is a notification",
variant: "customVariant"
};
function showNotification() {
notficationService?.push(myNotification1);
notficationService?.push(myNotification2);
}
</script>
<NotificationService bind:this={notficationService}/>
<button on:click={showNotification}>Show Notification</button>