Created
October 15, 2022 14:01
-
-
Save el3um4s/f67d7ecba184c9d8f6a88932d441d3a2 to your computer and use it in GitHub Desktop.
MEDIUM - How To Show Notifications in Web Application - 08
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="notifications"> | |
{#each $notifications as notification (notification.id)} | |
<div class="toast"> | |
<div class="content">{notification.msg.message}</div> | |
</div> | |
{/each} | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment