Utilities
showNotification
The Web Notification interface that display desktop notifications to the user.
Demo
Notified
Utilities
The Web Notification interface that display desktop notifications to the user.
<script>
import { showNotification } from "sveltronics";
let title = "Svelte-Hack";
let body = "Learn by doing";
</script>
<button
on:click={() => showNotification(title, body)}
>
notified
</button>