Skip to content

Instantly share code, notes, and snippets.

@el3um4s
Last active October 15, 2022 13:58
Show Gist options
  • Save el3um4s/43b3c019d993ad2ac43a6bc65e32fa81 to your computer and use it in GitHub Desktop.
Save el3um4s/43b3c019d993ad2ac43a6bc65e32fa81 to your computer and use it in GitHub Desktop.
MEDIUM - How To Show Notifications in Web Application - 03
const notifications = {
// ...
send: (msg: Msg, id: string = idGenerator()) => {
notificationStore.update((n) => {
return [...n, { id, msg }];
});
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment