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